added global search

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-04-04 10:46:43 -06:00
parent 7202fda38e
commit fa557e5f76
8 changed files with 247 additions and 0 deletions

9
Models/SearchResult.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace CarCareTracker.Models
{
public class SearchResult
{
public int Id { get; set; }
public ImportMode RecordType { get; set; }
public string Description { get; set; }
}
}