RoleCreateOrUpdateDto.cs 209 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class RoleCreateOrUpdateDto
  7. {
  8. public string Name { get; set; }
  9. }
  10. }