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

7 lines
210 B
C#
Raw Normal View History

2024-07-11 05:57:53 +00:00
namespace Neighbourhood.omg.lol.Models {
2024-06-21 06:26:11 +00:00
public class NowPageResponseData : IOmgLolResponseData {
2024-07-02 00:29:50 +00:00
public string Message { get; set; } = string.Empty;
public NowContentData? Now { get; set; }
2024-06-20 06:46:12 +00:00
}
}