- POST /v1/in/stats/export (EXP-01) - 일별/시간대별/플랫폼별 통계를 엑셀(.xlsx) 3시트로 생성 - ClosedXML 패키지 추가 Closes #138
16 lines
476 B
C#
16 lines
476 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Stats;
|
|
|
|
public class StatsExportRequestDto
|
|
{
|
|
[Required(ErrorMessage = "start_date는 필수입니다.")]
|
|
[JsonPropertyName("start_date")]
|
|
public string StartDate { get; set; } = string.Empty;
|
|
|
|
[Required(ErrorMessage = "end_date는 필수입니다.")]
|
|
[JsonPropertyName("end_date")]
|
|
public string EndDate { get; set; } = string.Empty;
|
|
}
|