mirror of
https://github.com/C9Glax/tranga.git
synced 2025-05-21 13:43:01 +02:00
17 lines
324 B
C#
17 lines
324 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("Tag")]
|
|
public class MangaTag(string tag)
|
|
{
|
|
[StringLength(64)]
|
|
[Required]
|
|
public string Tag { get; init; } = tag;
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Tag}";
|
|
}
|
|
} |