15 lines
337 B
C#
15 lines
337 B
C#
|
|
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; }
|
||
|
|
}
|