選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
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. }