MireaBackend/Application/Cqrs/Discipline/Queries/GetDisciplineList/DisciplineLookupDto.cs

17 lines
422 B
C#
Raw Normal View History

2024-01-28 05:59:48 +03:00
namespace Mirea.Api.DataAccess.Application.Cqrs.Discipline.Queries.GetDisciplineList;
/// <summary>
/// Represents disciplines.
/// </summary>
public class DisciplineLookupDto
{
/// <summary>
/// The unique identifier for the discipline.
/// </summary>
public int Id { get; set; }
/// <summary>
/// The name of the discipline.
/// </summary>
public required string Name { get; set; }
}