refactor: move database-related projects to separate folder
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Mirea.Api.DataAccess.Application.Cqrs.LectureHall.Queries.GetLectureHallList;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a view model containing multiple disciplines name.
|
||||
/// </summary>
|
||||
public class LectureHallListVm
|
||||
{
|
||||
/// <summary>
|
||||
/// The list of lecture hall.
|
||||
/// </summary>
|
||||
public IList<LectureHallLookupDto> LectureHalls { get; set; } = new List<LectureHallLookupDto>();
|
||||
}
|
Reference in New Issue
Block a user