15 lines
265 B
C#
15 lines
265 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace GamificationService.Models.DTO;
|
|
|
|
public class InstructionCategoryCreateDTO
|
|
{
|
|
public long? Id { get; set; }
|
|
|
|
[Required(ErrorMessage = "Title is required")]
|
|
public string Title { get; set; } = null!;
|
|
}
|
|
|
|
|
|
|