aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ParentalRating.cs
blob: 302c1e2991c0e958933904adfc29816720c4a7d8 (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
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class ParentalRating
    /// </summary>
    public class ParentalRating
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the value.
        /// </summary>
        /// <value>The value.</value>
        public int Value { get; set; }

        public ParentalRating()
        {

        }

        public ParentalRating(string name, int value)
        {
            Name = name;
            Value = value;
        }
    }
}