Files
Tranga/API/Schema/Identifiable.cs

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;
}