using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses; /// /// Represents basic information about a faculty. /// public class FacultyResponse { /// /// Gets or sets the unique identifier of the faculty. /// [Required] public int Id { get; set; } /// /// Gets or sets the name of the faculty. /// [Required] public required string Name { get; set; } /// /// Gets or sets the unique identifier of the campus to which the faculty belongs (optional). /// public int? CampusId { get; set; } }