feat: add queries for the campus
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m36s
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m36s
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
namespace Mirea.Api.DataAccess.Application.Cqrs.Campus.Queries.GetCampusBasicInfoList;
|
||||
|
||||
/// <summary>
|
||||
/// Represents basic information about a campus.
|
||||
/// </summary>
|
||||
public class CampusBasicInfoDto
|
||||
{
|
||||
/// <summary>
|
||||
/// The unique identifier for the campus.
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The code name associated with the campus.
|
||||
/// </summary>
|
||||
public required string CodeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The full name of the campus.
|
||||
/// </summary>
|
||||
public string? FullName { get; set; }
|
||||
}
|
Reference in New Issue
Block a user