14 lines
266 B
C#
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!;
|
|
}
|
|
|