diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/ParentalRating.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ParentalRating.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/ParentalRating.cs b/MediaBrowser.Model/Entities/ParentalRating.cs index bc3c43c2a..e2d1c6574 100644 --- a/MediaBrowser.Model/Entities/ParentalRating.cs +++ b/MediaBrowser.Model/Entities/ParentalRating.cs @@ -1,25 +1,21 @@ -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; } } } |
