mirror of
https://github.com/C9Glax/tranga.git
synced 2025-04-14 04:13:18 +02:00
12 lines
248 B
C#
12 lines
248 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("Tag")]
|
|
public class MangaTag(string tag)
|
|
{
|
|
[StringLength(64)]
|
|
[Required]
|
|
public string Tag { get; init; } = tag;
|
|
} |