11 lines
287 B
C#
11 lines
287 B
C#
namespace Model.Website;
|
|
|
|
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; } = "";
|
|
} |