jellyfin-server/MediaBrowser.Model/Entities/PackageReviewInfo.cs

38 lines
863 B
C#
Raw Normal View History

2013-11-07 17:27:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MediaBrowser.Model.Entities
{
public class PackageReviewInfo
{
/// <summary>
/// The package id (database key) for this review
/// </summary>
public int id { get; set; }
/// <summary>
/// The rating value
/// </summary>
public int rating { get; set; }
/// <summary>
/// Whether or not this review recommends this item
/// </summary>
public bool recommend { get; set; }
/// <summary>
/// A short description of the review
/// </summary>
public string title { get; set; }
/// <summary>
/// A full review
/// </summary>
public string review { get; set; }
}
}