Iceshrimp.NET/Iceshrimp.Backend/Controllers/Schemas/TimelineResponse.cs
2023-12-24 00:57:07 +01:00

8 lines
No EOL
304 B
C#

using J = System.Text.Json.Serialization.JsonPropertyNameAttribute;
namespace Iceshrimp.Backend.Controllers.Schemas;
public class TimelineResponse {
[J("notes")] public required IEnumerable<NoteResponse> Notes { get; set; }
[J("limit")] public required int Limit { get; set; }
}