Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

lu_authentication_sources.cs 553B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace Luticate2.Auth.DataAccess.Models
  6. {
  7. public partial class lu_authentication_sources
  8. {
  9. public Guid id { get; set; }
  10. public string name { get; set; }
  11. public string type { get; set; }
  12. public string data { get; set; }
  13. public virtual IList<lu_users> lu_users_fk { get; set; }
  14. }
  15. }