namespace Mirea.Api.DataAccess.Application.Cqrs.Campus.Queries.GetCampusBasicInfoList; /// /// Represents basic information about a campus. /// public class CampusBasicInfoDto { /// /// The unique identifier for the campus. /// public int Id { get; set; } /// /// The code name associated with the campus. /// public required string CodeName { get; set; } /// /// The full name of the campus. /// public string? FullName { get; set; } }