duheng
2024-04-30 6ab165e7dbe7b40c085163feb671b850b13c01d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace Yw.Dto.Map
{
    /// <summary>
    /// 
    /// </summary>
    public class ObjectExistDto
    {
        /// <summary>
        /// 
        /// </summary>
        public ObjectExistDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ObjectExistDto(string ObjectType, long ObjectID, bool IsExist)
        {
            this.ObjectType = ObjectType;
            this.ObjectID = ObjectID;
            this.IsExist = IsExist;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public string ObjectType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public bool IsExist { get; set; }
    }
}