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