Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920212223242526 |
- 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 string realm { get; set; }
-
-
-
- public virtual IList<lu_users> lu_users_fk { get; set; }
-
- }
- }
|