using System.Collections.Generic; namespace Mirea.Api.DataAccess.Application.Cqrs.Discipline.Queries.GetDisciplineList; /// /// Represents a view model containing multiple disciplines name. /// public class DisciplineListVm { /// /// The list of disciplines. /// public IList Disciplines { get; set; } = new List(); }