1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Luticate2.Auth.DataAccess.Models
- {
- public partial class lu_users
- {
-
- public Guid id { get; set; }
-
- public Guid authentication_source_id { get; set; }
-
- public string username { get; set; }
-
- public string password { get; set; }
-
- public string salt { get; set; }
-
- public string data { get; set; }
-
-
- public virtual lu_authentication_sources fk_lu_authentication_sources { get; set; }
-
-
- public virtual IList<lu_tokens> lu_tokens_fk { get; set; }
-
- public virtual IList<lu_verb_users_groups> lu_verb_users_groups_fk { get; set; }
-
- }
- }
|