mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
15 lines
301 B
C#
15 lines
301 B
C#
using System;
|
|
|
|
namespace MalwareMultiScan.Api
|
|
{
|
|
public class WeatherForecast
|
|
{
|
|
public DateTime Date { get; set; }
|
|
|
|
public int TemperatureC { get; set; }
|
|
|
|
public int TemperatureF => 32 + (int) (TemperatureC / 0.5556);
|
|
|
|
public string Summary { get; set; }
|
|
}
|
|
} |