mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1018 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1018 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    public class PackageReviewInfo
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the package id (database key) for this review.
 | 
						|
        /// </summary>
 | 
						|
        public int id { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the rating value.
 | 
						|
        /// </summary>
 | 
						|
        public int rating { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets whether or not this review recommends this item.
 | 
						|
        /// </summary>
 | 
						|
        public bool recommend { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a short description of the review.
 | 
						|
        /// </summary>
 | 
						|
        public string title { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the full review.
 | 
						|
        /// </summary>
 | 
						|
        public string review { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the time of review.
 | 
						|
        /// </summary>
 | 
						|
        public DateTime timestamp { get; set; }
 | 
						|
    }
 | 
						|
}
 |