9 lines
272 B
C#
9 lines
272 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class StatusPostResponseData : IOmgLolResponseData {
|
|
public string? Message { get; set; }
|
|
public string? Id { get; set; }
|
|
public string? Url { get; set; }
|
|
public string? ExternalUrl { get; set; }
|
|
|
|
}
|
|
}
|