mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
9 lines
165 B
C#
9 lines
165 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("Tag")]
|
|
public class MangaTag(string tag)
|
|
{
|
|
public string Tag { get; init; } = tag;
|
|
} |