10 lines
276 B
C#
10 lines
276 B
C#
|
|
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; }
|
||
|
|
}
|