feat: add queries for the discipline
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s

This commit is contained in:
2024-01-28 05:59:48 +03:00
parent bc99007d94
commit a1a83ce2e6
7 changed files with 117 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace Mirea.Api.DataAccess.Application.Cqrs.Discipline.Queries.GetDisciplineList;
/// <summary>
/// Represents a view model containing multiple disciplines name.
/// </summary>
public class DisciplineListVm
{
/// <summary>
/// The list of disciplines.
/// </summary>
public IList<DisciplineLookupDto> Disciplines { get; set; } = new List<DisciplineLookupDto>();
}