2024-07-10 09:00:36 +02:00

18 lines
387 B
C#

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; }
}
}