13 lines
318 B
C#
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|