Neighbourhood.omg.lol/Models/DirectoryResponseData.cs
Gordon Pedersen d0ac64e1be Added in the address directory
(except for actually rendering the list)
2024-06-18 17:11:28 +10:00

13 lines
352 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; }
public string Url { get; set; }
public List<string> Directory { get; set; }
}
}