mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-01 08:24:17 +02:00
11 lines
222 B
C#
11 lines
222 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema;
|
|
|
|
[PrimaryKey("Key")]
|
|
public abstract class Identifiable(string key)
|
|
{
|
|
public string Key { get; init; } = key;
|
|
|
|
public override string ToString() => Key;
|
|
} |