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.
 
 
 
 

17 rivejä
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. }