using System; namespace Entities.DTO { public class LessonResponseDto { public Guid Id { get; set; } public string Title { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public Guid TextbookID { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } } }