ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Dtos/query/Setup/PaymentTermDto.cs

10 lines
276 B
C#
Raw Permalink Normal View History

namespace DoliMiddlewareApi.Dtos.query.Setup;
public class PaymentTermDto
{
public string? Id { get; set; }
public string? Code { get; set; }
public string? Label { get; set; }
public string? Description { get; set; }
public string? Nbjour { get; set; }
}