Iceshrimp.NET/Iceshrimp.Shared/Schemas/Web/PaginationWrapper.cs
2024-07-05 04:16:19 +02:00

7 lines
No EOL
168 B
C#

namespace Iceshrimp.Shared.Schemas.Web;
public class PaginationWrapper<T>
{
public required string Id { get; set; }
public required T Entity { get; set; }
}