RolePermissionDto.cs 249 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace MTWorkHR.Application.Models
  3. {
  4. public class RolePermissionDto : EntityDto
  5. {
  6. public long PermissionId { get; set; }
  7. public string PermissionName { get; set; }
  8. }
  9. }