13 lines
302 B
C#
13 lines
302 B
C#
namespace AyaNovaQBI
|
|
{
|
|
public class NameIdActiveChargeCostItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool Active { get; set; }
|
|
public decimal Cost { get; set; }
|
|
|
|
public decimal Charge { get; set; }
|
|
}
|
|
}
|