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