about summary refs log tree commit diff
path: root/LibMatrix/Homeservers/ImplementationDetails/Synapse/Models/Responses/RoomMediaListResult.cs
blob: 97e85ad1b78e6f33cc21d2c33b1ce3ee8d8087e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;

namespace LibMatrix.Homeservers.ImplementationDetails.Synapse.Models.Responses;

public class SynapseAdminRoomMediaListResult {
    [JsonPropertyName("local")]
    public List<string> Local { get; set; } = new();

    [JsonPropertyName("remote")]
    public List<string> Remote { get; set; } = new();
}