Iceshrimp.NET/Iceshrimp.Backend/Controllers/Mastodon/Schemas/NotificationSchemas.cs
2024-02-20 19:59:38 +01:00

13 lines
No EOL
439 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Iceshrimp.Backend.Controllers.Mastodon.Schemas;
public abstract class NotificationSchemas
{
public class GetNotificationsRequest
{
[FromQuery(Name = "types")] public List<string>? Types { get; set; }
[FromQuery(Name = "exclude_types")] public List<string>? ExcludeTypes { get; set; }
[FromQuery(Name = "account_id")] public string? AccountId { get; set; }
}
}