13 lines
383 B
C#
13 lines
383 B
C#
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; } = string.Empty;
|
|
public long Count { get; set; }
|
|
public List<NowData> Garden { get; set; } = new List<NowData>();
|
|
}
|
|
}
|