Files
ravenqbi/AyaNovaQBI/ServiceRate.cs
2022-07-09 04:17:38 +00:00

31 lines
800 B
C#

using System.Collections.Generic;
namespace AyaNovaQBI
{
public class ServiceRate
{
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 ServiceRate()
{
Tags = new List<string>();
}
}//eoc
}