phronCare/Domain/Generics/ExpeditionSearchParams.cs

13 lines
318 B
C#
Raw Normal View History

2025-09-09 23:54:11 -03:00
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; }
}
}