feat: add queries for the discipline
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s
This commit is contained in:
@ -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>();
|
||||
}
|
Reference in New Issue
Block a user