2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
public class PackageReviewInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets the package id (database key) for this review.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets the rating value.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public int rating { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets whether or not this review recommends this item.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public bool recommend { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets a short description of the review.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string title { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets the full review.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string review { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets or sets the time of review.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public DateTime timestamp { get; set; }
|
|
|
|
}
|
|
|
|
}
|