mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
19 lines
385 B
C#
19 lines
385 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum ImportMode
|
|
{
|
|
ServiceRecord = 0,
|
|
RepairRecord = 1,
|
|
GasRecord = 2,
|
|
TaxRecord = 3,
|
|
UpgradeRecord = 4,
|
|
ReminderRecord = 5,
|
|
NoteRecord = 6,
|
|
SupplyRecord = 7,
|
|
Dashboard = 8,
|
|
PlanRecord = 9,
|
|
OdometerRecord = 10,
|
|
VehicleRecord = 11
|
|
}
|
|
}
|