mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 18:36:38 -06:00
12 lines
203 B
C#
12 lines
203 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum ImportMode
|
|
{
|
|
ServiceRecord = 0,
|
|
RepairRecord = 1,
|
|
GasRecord = 2,
|
|
TaxRecord = 3,
|
|
UpgradeRecord = 4
|
|
}
|
|
}
|