Files
plexcsharp/PlexAPI/Models/Requests/GetServerListResponseBody.cs
2024-06-27 14:39:09 +00:00

25 lines
767 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace PlexAPI.Models.Requests
{
using Newtonsoft.Json;
using PlexAPI.Models.Requests;
using PlexAPI.Utils;
/// <summary>
/// List of Servers
/// </summary>
public class GetServerListResponseBody
{
[JsonProperty("MediaContainer")]
public GetServerListMediaContainer? MediaContainer { get; set; }
}
}