mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-24 00:00: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; } = [];
|
|||
|
}
|