using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Project.Application.DTOs.Outgoing { public class ReadingRoleDto { public int Id { get; set; } public string Name { get; set; } } }