1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-05-15 02:43:01 +02:00

9 lines
165 B
C#

using Microsoft.EntityFrameworkCore;
namespace API.Schema;
[PrimaryKey("Tag")]
public class MangaTag(string tag)
{
public string Tag { get; init; } = tag;
}