15 lines
281 B
C#
15 lines
281 B
C#
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; }
|
|
|
|
public string? Description { get; set; }
|
|
}
|