This commit is contained in:
34
AyaNovaQBI/TravelRate.cs
Normal file
34
AyaNovaQBI/TravelRate.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
public class TravelRate
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
public string Name { get; set; }
|
||||
public bool Active { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public string Wiki { get; set; }
|
||||
public string CustomFields { get; set; }
|
||||
public List<string> Tags { get; set; }
|
||||
|
||||
public string AccountNumber { get; set; }
|
||||
public decimal Cost { get; set; }
|
||||
public decimal Charge { get; set; }
|
||||
public string Unit { get; set; }
|
||||
public bool ContractOnly { get; set; }
|
||||
|
||||
|
||||
public TravelRate()
|
||||
{
|
||||
Tags = new List<string>();
|
||||
}
|
||||
|
||||
|
||||
}//eoc
|
||||
}
|
||||
Reference in New Issue
Block a user