123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Luticate2.Auth.DataAccess.Models
- {
- public partial class lu_authentication_sources
- {
-
- public Guid id { get; set; }
-
- public string name { get; set; }
-
- public string type { get; set; }
-
- public string data { get; set; }
-
-
-
- public virtual ICollection<lu_users> lu_users_fk { get; set; }
-
- }
- }
|