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

12 lines
280 B
C#
Raw Permalink 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 BasicResponseData : IOmgLolResponseData {
2024-07-02 00:29:50 +00:00
public string Message { get; set; } = string.Empty;
2024-06-20 06:46:12 +00:00
}
}