using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses; /// /// Represents information about a discipline. /// public class DisciplineResponse { /// /// Gets or sets the unique identifier of the discipline. /// [Required] public int Id { get; set; } /// /// Gets or sets the name of the discipline. /// [Required] public required string Name { get; set; } }