Iceshrimp.NET/Iceshrimp.Backend/Core/Database/IEntity.cs
2025-02-06 19:31:08 +01:00

11 lines
256 B
C#

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