13 lines
No EOL
418 B
C#
13 lines
No EOL
418 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Iceshrimp.Backend.Controllers.Mastodon.Schemas;
|
|
|
|
public abstract class TimelineSchemas
|
|
{
|
|
public class PublicTimelineRequest
|
|
{
|
|
[FromQuery(Name = "local")] public bool OnlyLocal { get; set; } = false;
|
|
[FromQuery(Name = "remote")] public bool OnlyRemote { get; set; } = false;
|
|
[FromQuery(Name = "only_media")] public bool OnlyMedia { get; set; } = false;
|
|
}
|
|
} |