aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ParentalRating.cs
blob: bc3c43c2a68c4ea970b6e8427861630ad7fb4cd7 (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
using ProtoBuf;

namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class ParentalRating
    /// </summary>
    [ProtoContract]
    public class ParentalRating
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        [ProtoMember(1)]
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the value.
        /// </summary>
        /// <value>The value.</value>
        [ProtoMember(2)]
        public int Value { get; set; }
    }
}