All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 10m11s
close #66
16 lines
545 B
C#
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;
|
|
}
|
|
}
|