feat(Navigation) Added a search button for desktop users
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Model.Website;
|
||||
|
||||
public class SearchPointModel
|
||||
{
|
||||
public string Title { get; set; } = "";
|
||||
public string Tags { get; set; } = "";
|
||||
public string PointType { get; set; } = "";
|
||||
public string Href { get; set; } = "";
|
||||
}
|
||||
@@ -8,7 +8,6 @@ public class WebSectionModel
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = "Add name";
|
||||
public string Description { get; set; } = "Add description";
|
||||
public string Href { get; set; } = null;
|
||||
public int Order { get; set; } = 0;
|
||||
public string IsPrivate { get; set; } = "True";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user