mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 17:20:15 -06:00
10 lines
216 B
C#
10 lines
216 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class SearchResult
|
|
{
|
|
public int Id { get; set; }
|
|
public ImportMode RecordType { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|