Files
aspnet-microservice-template/Models/Database/InstructionCategory.cs

14 lines
266 B
C#

using System.ComponentModel.DataAnnotations;
namespace GamificationService.Models.Database;
public class InstructionCategory
{
[Key]
public long Id { get; set; }
[Required(ErrorMessage = "Title is required")]
public string Title { get; set; } = null!;
}