13 lines
341 B
C#
13 lines
341 B
C#
using ManagerService.DTOs;
|
|
using System;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class WeatherDTO : SectionDTO
|
|
{
|
|
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
|
|
}
|
|
}
|