Polianin Nikita
a1a83ce2e6
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s
14 lines
422 B
C#
14 lines
422 B
C#
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>();
|
|
} |