13 lines
303 B
C#
13 lines
303 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Stats;
|
|
|
|
public class DashboardRequestDto
|
|
{
|
|
[JsonPropertyName("start_date")]
|
|
public string StartDate { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("end_date")]
|
|
public string EndDate { get; set; } = string.Empty;
|
|
}
|