Neighbourhood.omg.lol/Models/API/NowResponseData.cs

7 lines
266 B
C#

namespace Neighbourhood.omg.lol.Models {
public class NowResponseData : IOmgLolResponseData {
public string Message { get; set; } = string.Empty;
public long Count { get; set; }
public List<NowData> Garden { get; set; } = new List<NowData>();
}
}