jellyfin/MediaBrowser.Model/Entities/PackageReviewInfo.cs

41 lines
1018 B
C#
Raw Normal View History

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