6 lines
235 B
C#
6 lines
235 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class EphemeralResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public List<string> Content { get; set; } = new List<string>();
|
|
}
|
|
}
|