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.
53 lines
1.3 KiB
53 lines
1.3 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 Rating {
|
|
/// <summary>
|
|
/// Gets or Sets Votes
|
|
/// </summary>
|
|
[DataMember(Name="votes", EmitDefaultValue=false)]
|
|
[JsonProperty(PropertyName = "votes")]
|
|
public int? Votes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Value
|
|
/// </summary>
|
|
[DataMember(Name="value", EmitDefaultValue=false)]
|
|
[JsonProperty(PropertyName = "value")]
|
|
public decimal? Value { 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 Rating {\n");
|
|
sb.Append(" Votes: ").Append(Votes).Append("\n");
|
|
sb.Append(" Value: ").Append(Value).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);
|
|
}
|
|
|
|
}
|
|
}
|