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