21 lines
459 B
C#
21 lines
459 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PersisitentConnection
|
|
{
|
|
public enum Weather { Sunny, MostlySunny, PartlySunny, PartlyCloudy, MostlyCloudy, Cloudy }
|
|
|
|
public class WeatherReport
|
|
{
|
|
public int Temperature { get; set; }
|
|
|
|
public long ReportTime { get; set; }
|
|
|
|
public Weather Weather { get; set; }
|
|
|
|
public string ZipCode { get; set; }
|
|
}
|
|
}
|