11 lines
243 B
C#
11 lines
243 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace DoliMiddlewareApi.Dtos.command;
|
||
|
|
|
||
|
|
public class UpdateInvoiceStatusDto
|
||
|
|
{
|
||
|
|
[Required]
|
||
|
|
[RegularExpression("^(draft|unpaid|paid)$")]
|
||
|
|
public string Status { get; set; } = "draft";
|
||
|
|
}
|