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