mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
16 lines
304 B
C#
16 lines
304 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
|
|
}
|
|
}
|