phronCare/Domain/Generics/ExpeditionSearchParams.cs
Leandro Hernan Rojas c2bd8247a1
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 21m48s
Add Export Exoeditions
2025-09-09 23:54:11 -03:00

13 lines
318 B
C#

namespace Domain.Generics
{
public class ExpeditionSearchParams:PagedRequest
{
public string? Number { get; set; }
public string? Status { get; set; }
public DateTime? From { get; set; }
public DateTime? To { get; set; }
public int? LocationId { get; set; }
}
}