14 lines
364 B
C#
14 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class WeatherDTO
|
|
{
|
|
public string city { get; set; } // Weather City
|
|
public DateTimeOffset? updatedDate { get; set; } // Weather date update (to only refresh)
|
|
public string result { get; set; } // Weather result
|
|
}
|
|
}
|