Neighbourhood.omg.lol/Models/BasicResponseData.cs

12 lines
264 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 BasicResponseData : IOmgLolResponseData {
2024-06-20 06:46:12 +00:00
public string Message { get; set; }
}
}