mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
13 lines
198 B
C#
13 lines
198 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum ExtraFieldType
|
|
{
|
|
Text = 0,
|
|
Number = 1,
|
|
Decimal = 2,
|
|
Date = 3,
|
|
Time = 4,
|
|
Location = 5
|
|
}
|
|
}
|