diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
| commit | 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 (patch) | |
| tree | b792b6c932a6f77cec1535267e1096251bc8ab95 /MediaBrowser.Model/Entities/ParentalRating.cs | |
| parent | 48d60b2f6ad2cf88bd5336025446b005d24fe4ee (diff) | |
removed unused attributes
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; } } } |
