18 lines
262 B
C#
18 lines
262 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace T120B165_ImgBoard.Models;
|
|
|
|
public enum TagType
|
|
{
|
|
General,
|
|
Copyright,
|
|
}
|
|
|
|
public class Tag
|
|
{
|
|
[Key]
|
|
public required string Name { get; init; }
|
|
|
|
public required TagType Type { get; set; }
|
|
}
|