DocSpace-buildtools/products/ASC.CRM/Server/ApiModels/CreateOrUpdateInvoiceTax.cs

15 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ASC.CRM.ApiModels
{
public class CreateOrUpdateInvoiceTax
{
public string Name { get; set; }
public string Description { get; set; }
public decimal Rate { get; set; }
}
}