ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Dtos/command/UpdateSupplierInvoiceDto.cs

15 lines
337 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace DoliMiddlewareApi.Dtos.command;
public class UpdateSupplierInvoiceDto
{
public DateTime? ExpireDate { get; set; }
[StringLength(100)]
public string? SupplierRef { get; set; }
public string? NotePublic { get; set; }
public string? NotePrivate { get; set; }
}