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

7 lines
231 B
C#
Raw Normal View History

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