7 lines
226 B
C#
7 lines
226 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class PatchStatus {
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
public string? Emoji { get; set; }
|
|
}
|
|
}
|