2024-12-14 21:53:29 +01:00
|
|
|
|
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)]
|
2025-01-31 21:24:35 +01:00
|
|
|
|
public string AltTitleId { get; init; } = TokenGen.CreateToken("AltTitle", language, title);
|
2024-12-14 21:53:29 +01:00
|
|
|
|
[MaxLength(8)]
|
|
|
|
|
public string Language { get; init; } = language;
|
|
|
|
|
public string Title { get; set; } = title;
|
|
|
|
|
}
|