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