19 lines
433 B
C#
19 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|