15 lines
266 B
C#
15 lines
266 B
C#
namespace zero.Backoffice.Models;
|
|
|
|
public class ListQueryDateRange
|
|
{
|
|
public DateTimeOffset? From { get; set; }
|
|
|
|
public DateTimeOffset? To { get; set; }
|
|
}
|
|
|
|
public class ListQueryRange
|
|
{
|
|
public decimal? From { get; set; }
|
|
|
|
public decimal? To { get; set; }
|
|
} |