You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.1 KiB

using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using Newtonsoft.Json;
namespace RadarrSharp.Models {
/// <summary>
///
/// </summary>
[DataContract]
public class QualityQuality {
/// <summary>
/// Gets or Sets Id
/// </summary>
[DataMember(Name="id", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "id")]
public int? Id { get; set; }
/// <summary>
/// Gets or Sets Name
/// </summary>
[DataMember(Name="name", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// Gets or Sets Source
/// </summary>
[DataMember(Name="source", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "source")]
public string Source { get; set; }
/// <summary>
/// Gets or Sets Resolution
/// </summary>
[DataMember(Name="resolution", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "resolution")]
public int? Resolution { get; set; }
/// <summary>
/// Gets or Sets Modifier
/// </summary>
[DataMember(Name="modifier", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "modifier")]
public string Modifier { get; set; }
/// <summary>
/// Get the string presentation of the object
/// </summary>
/// <returns>String presentation of the object</returns>
public override string ToString() {
var sb = new StringBuilder();
sb.Append("class QualityQuality {\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" Name: ").Append(Name).Append("\n");
sb.Append(" Source: ").Append(Source).Append("\n");
sb.Append(" Resolution: ").Append(Resolution).Append("\n");
sb.Append(" Modifier: ").Append(Modifier).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
/// <summary>
/// Get the JSON string presentation of the object
/// </summary>
/// <returns>JSON string presentation of the object</returns>
public string ToJson() {
return JsonConvert.SerializeObject(this, Formatting.Indented);
}
}
}