12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
-
- namespace Luticate2.Auth.DataAccess.Models
- {
- public partial class LuGroups
- {
- public LuGroups()
- {
- LuGroupsObjects = new HashSet<LuGroupsObjects>();
- }
-
- public Guid Id { get; set; }
- public string Name { get; set; }
-
- public LuObjectsMetadata IdNavigation { get; set; }
- public ICollection<LuGroupsObjects> LuGroupsObjects { get; set; }
- }
- }
|