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

10 lines
272 B
C#
Raw Normal View History

2024-07-11 05:57:53 +00:00
namespace Neighbourhood.omg.lol.Models {
2024-06-05 12:41:08 +00:00
public class StatusPostResponseData : IOmgLolResponseData {
public string? Message { get; set; }
public string? Id { get; set; }
public string? Url { get; set; }
public string? ExternalUrl { get; set; }
}
}