12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Luticate2.Auth.DataAccess.Models
- {
- public partial class lu_verb_users_groups
- {
-
- public Guid user_id { get; set; }
-
- public Guid group_id { get; set; }
-
-
- public virtual lu_users fk_lu_users { get; set; }
-
- public virtual lu_groups fk_lu_groups { get; set; }
-
-
- }
- }
|