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

10 lines
287 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 {
2024-07-16 02:15:56 +00:00
public string Message { get; set; } = string.Empty;
2024-06-05 12:41:08 +00:00
public string? Id { get; set; }
public string? Url { get; set; }
public string? ExternalUrl { get; set; }
}
}