Neighbourhood.omg.lol/Models/NowPageResponseData.cs

13 lines
310 B
C#
Raw Normal View History

2024-06-20 06:46:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Neighbourhood.omg.lol.Models {
2024-06-21 06:26:11 +00:00
public class NowPageResponseData : IOmgLolResponseData {
2024-06-20 06:46:12 +00:00
public string Message { get; set; }
2024-06-21 06:26:11 +00:00
public NowContentData Now { get; set; }
2024-06-20 06:46:12 +00:00
}
}