refactor: move database-related projects to separate folder
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
namespace Mirea.Api.DataAccess.Application.Cqrs.Discipline.Queries.GetDisciplineDetails;
|
||||
|
||||
/// <summary>
|
||||
/// Represents disciplines.
|
||||
/// </summary>
|
||||
public class DisciplineInfoVm
|
||||
{
|
||||
/// <summary>
|
||||
/// The unique identifier for the discipline.
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The name of the discipline.
|
||||
/// </summary>
|
||||
public required string Name { get; set; }
|
||||
}
|
Reference in New Issue
Block a user