7 lines
289 B
C#
7 lines
289 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class DirectoryResponseData : IOmgLolResponseData {
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public List<string> Directory { get; set; } = new List<string>();
|
|
}
|
|
}
|