11 lines
194 B
C#
11 lines
194 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; }
|
|||
|
|
}
|