leandro a837eb41fe
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 10m11s
feat(ui): add sales document backoffice foundation
close #66
2026-06-03 21:04:49 -03:00

16 lines
545 B
C#

namespace phronCare.UIBlazor.Services.Sales.SalesDocuments
{
public sealed class SalesDocumentSearchParams
{
public int? CustomerId { get; set; }
public string? CustomerText { get; set; }
public int? QuoteId { get; set; }
public int? DocumentType { get; set; }
public int? Status { get; set; }
public DateTime? IssueDateFrom { get; set; }
public DateTime? IssueDateTo { get; set; }
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 10;
}
}