12 lines
360 B
C#
12 lines
360 B
C#
namespace DoliMiddlewareApi.Dtos.Dolibarr.Setup;
|
|
|
|
public class PaymentTermResponse
|
|
{
|
|
public string? id { get; set; }
|
|
public string? code { get; set; }
|
|
public string? label { get; set; }
|
|
public string? descr { get; set; }
|
|
public string? nbjour { get; set; }
|
|
public string? type_cdr { get; set; }
|
|
public string? module { get; set; }
|
|
} |