namespace Mirea.Api.DataAccess.Application.Cqrs.Campus.Queries.GetCampusDetails;
///
/// Represents a view model containing detailed information about a campus.
///
public class CampusDetailsVm
{
///
/// 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; }
///
/// The address of the campus.
///
public string? Address { get; set; }
}