Neighbourhood.omg.lol/Models/API/DirectoryResponseData.cs

13 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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>();
}
}