1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Luticate2.Auth.DataAccess.Models
- {
- public partial class lu_groups
- {
-
- public Guid id { get; set; }
-
- public string name { get; set; }
-
-
-
- public virtual ICollection<lu_verb_users_groups> lu_verb_users_groups_fk { get; set; }
-
- }
- }
|