7 lines
272 B
C#
7 lines
272 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class PatchStatusResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
}
|
|
}
|