mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 07:40:13 +01:00
13 lines
314 B
C#
13 lines
314 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;
|
|
|
|
[ForeignKey("MangaIds")]
|
|
public virtual Manga[] Mangas { get; internal set; } = [];
|
|
} |