16 lines
368 B
C#
16 lines
368 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace public_valetax.DTOs
|
|
{
|
|
public class VJournalFilter
|
|
{
|
|
[JsonPropertyName("from")]
|
|
public DateTime? From { get; set; }
|
|
|
|
[JsonPropertyName("to")]
|
|
public DateTime? To { get; set; }
|
|
|
|
[JsonPropertyName("search")]
|
|
public string Search { get; set; } = string.Empty;
|
|
}
|
|
} |