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

15 lines
318 B
C#
Raw Normal View History

2021-03-05 20:06:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2021-03-09 15:37:16 +00:00
namespace ASC.CRM.ApiModels
2021-03-05 20:06:49 +00:00
{
public class CreateOrUpdateInvoiceTax
{
public string Name { get; set; }
public string Description { get; set; }
public decimal Rate { get; set; }
}
}