Neighbourhood.omg.lol/Models/NowResponseData.cs

14 lines
344 B
C#
Raw Normal View History

2024-06-11 00:36:48 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Neighbourhood.omg.lol.Models {
public class NowResponseData : IOmgLolResponseData {
public string Message { get; set; }
public long Count { get; set; }
public List<NowData> Garden { get; set; }
}
}