mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-01 08:24:17 +02:00
19 lines
566 B
C#
19 lines
566 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("Key")]
|
|
public class FileLibrary(string basePath, string libraryName)
|
|
: Identifiable(TokenGen.CreateToken(typeof(FileLibrary), basePath))
|
|
{
|
|
[StringLength(256)]
|
|
[Required]
|
|
public string BasePath { get; internal set; } = basePath;
|
|
|
|
[StringLength(512)]
|
|
[Required]
|
|
public string LibraryName { get; internal set; } = libraryName;
|
|
|
|
public override string ToString() => $"{base.ToString()} {LibraryName} - {BasePath}";
|
|
} |