using System; using System.ComponentModel.DataAnnotations.Schema; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.MultiTenancy; namespace BaseService.RelationData.Dto { public class BranchRoleDto : CreationAuditedEntity { /// /// Id of the Role. /// public Guid RoleId { get; set; } public string RoleName { get; set; } /// /// Id of the . /// public Guid BranchId { get; set; } public string BranchName { get; set; } public override object[] GetKeys() { return new object[] { BranchId, RoleId }; } } }