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

17 行
397 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace Domain.Identity
  6. {
  7. public class AccountRole : BaseEntity
  8. {
  9. public Guid RoleId { get; set; }
  10. public virtual Role Role { get; set; }
  11. public Guid AccountId { get; set; }
  12. public virtual Account Account { get; set; }
  13. }
  14. }