25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

17 satır
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. }