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

6 lines
233 B
C#

namespace Neighbourhood.omg.lol.Models {
public class StatusResponseData : IOmgLolResponseData {
public string Message { get; set; } = string.Empty;
public List<Status> Statuses { get; set; } = new List<Status>();
}
}