aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/PackageReviewInfo.cs
blob: 5b22b34acedbdbb35ef4b9091f86eef2761d75c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#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; }
    }
}