Files
aspnet-microservice-template/Models/DTO/InstructionCategoryCreateDTO.cs

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!;
}