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/Weather/WeatherForecast.cs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'MediaBrowser.Model/Weather/WeatherForecast.cs') diff --git a/MediaBrowser.Model/Weather/WeatherForecast.cs b/MediaBrowser.Model/Weather/WeatherForecast.cs index 20cce3780..0f9ecba5b 100644 --- a/MediaBrowser.Model/Weather/WeatherForecast.cs +++ b/MediaBrowser.Model/Weather/WeatherForecast.cs @@ -1,54 +1,46 @@ using System; -using ProtoBuf; namespace MediaBrowser.Model.Weather { /// /// Represents a weather forecast for a specific date /// - [ProtoContract] public class WeatherForecast { /// /// Gets or sets the date. /// /// The date. - [ProtoMember(1)] public DateTime Date { get; set; } /// /// Gets or sets the high temperature fahrenheit. /// /// The high temperature fahrenheit. - [ProtoMember(2)] public int HighTemperatureFahrenheit { get; set; } /// /// Gets or sets the low temperature fahrenheit. /// /// The low temperature fahrenheit. - [ProtoMember(3)] public int LowTemperatureFahrenheit { get; set; } /// /// Gets or sets the high temperature celsius. /// /// The high temperature celsius. - [ProtoMember(4)] public int HighTemperatureCelsius { get; set; } /// /// Gets or sets the low temperature celsius. /// /// The low temperature celsius. - [ProtoMember(5)] public int LowTemperatureCelsius { get; set; } /// /// Gets or sets the condition. /// /// The condition. - [ProtoMember(6)] public WeatherConditions Condition { get; set; } } } -- cgit v1.2.3