6 lines
256 B
C#
6 lines
256 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class ThemeResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public Dictionary<string, Theme> Themes { get; set; } = new Dictionary<string, Theme>();
|
|
}
|
|
}
|