You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
557 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Domain.Identity
  5. {
  6. public class Account : BaseEntity
  7. {
  8. public string Username { get; set; }
  9. public string Password { get; set; }
  10. public string Mobile { get; set; }
  11. public string Name { get; set; }
  12. public string Email { get; set; }
  13. public virtual ICollection<AccountRole> AccountRoles { get; set; }
  14. public virtual ICollection<LoginToken> LoginTokens { get; set; }
  15. }
  16. }