1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using GxPress.EnumConst;
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity.Topic
- {
-
-
-
- [DataTable("tede_topic_addressee")]
- public class TopicAddressee : Datory.Entity
- {
-
-
-
- [DataColumn]
- public int TopicId { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public string UserName { get; set; }
-
-
-
- [DataColumn]
- public bool IsRead { get; set; }
-
-
-
- [DataColumn]
- public bool IsAdmin { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsUpload{get;set;}
- }
- }
|