jellyfin/MediaBrowser.Model/Entities/PackageReviewInfo.cs
Bond_009 07cc4be6a7 Fix some warnings
* Add analyzers to MediaBrowser.XbmcMetadata
* Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata
* Add analyzers to MediaBrowser.WebDashboard
* Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard
* Disable SA1600 in favor of CS1591
2020-02-23 12:11:43 +01:00

41 lines
911 B
C#

#pragma warning disable CS1591
using System;
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; }
/// <summary>
/// Time of review
/// </summary>
public DateTime timestamp { get; set; }
}
}