12345678910111213141516171819202122232425262728 |
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_group_folder")]
- public class GroupFolder : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
-
-
- [DataColumn]
- public int UserId { get; set; }
-
-
-
- [DataColumn]
- public int ParentId { get; set; }
- }
- }
|