14 lines
297 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00

namespace CWX_WeatherPatch
{
public class JSONClass
{
public float Cloudness { get; set; }
public int WindDirection { get; set; }
public float Wind { get; set; }
public float Rain { get; set; }
public float RainRandomness { get; set; }
}
}