mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
10 lines
151 B
C#
10 lines
151 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum DashboardMetric
|
|
{
|
|
Default = 0,
|
|
TotalCost = 1,
|
|
CostPerMile = 2
|
|
}
|
|
}
|