15 lines
281 B
C#
Raw Permalink Normal View History

namespace LMS.Repository.DTO.PromptDto;
public class PromptNameDto
{
public string Id { get; set; }
public string Name { get; set; }
public string PromptTypeId { get; set; }
public string? Remark { get; set; }
2025-09-13 18:04:51 +08:00
public string? Description { get; set; }
}