Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

lu_users.cs 743B

12345678910111213141516171819202122232425262728
  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_users
  8. {
  9. public Guid id { get; set; }
  10. public Guid authentication_source_id { get; set; }
  11. public string username { get; set; }
  12. public string password { get; set; }
  13. public string salt { get; set; }
  14. public virtual lu_authentication_sources fk_lu_authentication_sources { get; set; }
  15. public virtual ICollection<lu_verb_users_groups> lu_verb_users_groups_fk { get; set; }
  16. }
  17. }