mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
18 lines
552 B
C#
18 lines
552 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("AltTitleId")]
|
|
public class MangaAltTitle(string language, string title)
|
|
{
|
|
[MaxLength(64)]
|
|
public string AltTitleId { get; init; } = TokenGen.CreateToken("AltTitle", 64);
|
|
[MaxLength(8)]
|
|
public string Language { get; init; } = language;
|
|
public string Title { get; set; } = title;
|
|
|
|
[ForeignKey("MangaId")]
|
|
public virtual Manga Manga { get; init; }
|
|
} |