Files
AOW4/WebAssembly/Data/SearchPointModel.cs

11 lines
290 B
C#

namespace WebAssembly.Data;
public class SearchPointModel
{
public string Title { get; set; } = "";
public string Summary { get; set; } = "";
public string Tags { get; set; } = "";
public string PointType { get; set; } = "";
public string Href { get; set; } = "";
}