Iceshrimp.NET/Iceshrimp.Backend/Core/Database/IEntity.cs

12 lines
No EOL
236 B
C#

namespace Iceshrimp.Backend.Core.Database;
public interface IEntity
{
public string Id { get; }
}
public class EntityWrapper<T> : IEntity
{
public required string Id { get; init; }
public required T Entity { get; init; }
}