From 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 18 Apr 2013 15:57:28 -0400 Subject: removed unused attributes --- MediaBrowser.Model/Globalization/CountryInfo.cs | 8 +------- MediaBrowser.Model/Globalization/CultureDto.cs | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) (limited to 'MediaBrowser.Model/Globalization') diff --git a/MediaBrowser.Model/Globalization/CountryInfo.cs b/MediaBrowser.Model/Globalization/CountryInfo.cs index b95252763..16aea8436 100644 --- a/MediaBrowser.Model/Globalization/CountryInfo.cs +++ b/MediaBrowser.Model/Globalization/CountryInfo.cs @@ -1,39 +1,33 @@ -using ProtoBuf; - + namespace MediaBrowser.Model.Globalization { /// /// Class CountryInfo /// - [ProtoContract] public class CountryInfo { /// /// Gets or sets the name. /// /// The name. - [ProtoMember(1)] public string Name { get; set; } /// /// Gets or sets the display name. /// /// The display name. - [ProtoMember(2)] public string DisplayName { get; set; } /// /// Gets or sets the name of the two letter ISO region. /// /// The name of the two letter ISO region. - [ProtoMember(3)] public string TwoLetterISORegionName { get; set; } /// /// Gets or sets the name of the three letter ISO region. /// /// The name of the three letter ISO region. - [ProtoMember(4)] public string ThreeLetterISORegionName { get; set; } } } diff --git a/MediaBrowser.Model/Globalization/CultureDto.cs b/MediaBrowser.Model/Globalization/CultureDto.cs index cd9507026..414d7b9d4 100644 --- a/MediaBrowser.Model/Globalization/CultureDto.cs +++ b/MediaBrowser.Model/Globalization/CultureDto.cs @@ -1,39 +1,33 @@ -using ProtoBuf; - + namespace MediaBrowser.Model.Globalization { /// /// Class CultureDto /// - [ProtoContract] public class CultureDto { /// /// Gets or sets the name. /// /// The name. - [ProtoMember(1)] public string Name { get; set; } /// /// Gets or sets the display name. /// /// The display name. - [ProtoMember(2)] public string DisplayName { get; set; } /// /// Gets or sets the name of the two letter ISO language. /// /// The name of the two letter ISO language. - [ProtoMember(3)] public string TwoLetterISOLanguageName { get; set; } /// /// Gets or sets the name of the three letter ISO language. /// /// The name of the three letter ISO language. - [ProtoMember(4)] public string ThreeLetterISOLanguageName { get; set; } } } -- cgit v1.2.3