29 lines
572 B
C#
29 lines
572 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
|
|
namespace AyaNova.KPI
|
|
{
|
|
|
|
//string kpiName, string criteria, DateTimeOffset clientTimeStamp
|
|
|
|
|
|
public sealed class KPIRequestOptions
|
|
{
|
|
|
|
[FromBody]
|
|
public string KPIName { get; set; }
|
|
|
|
[FromBody]
|
|
public string Criteria { get; set; }
|
|
|
|
[FromBody]
|
|
public DateTimeOffset Template { get; set; }
|
|
|
|
public KPIRequestOptions()
|
|
{
|
|
KPIName=string.Empty;
|
|
Criteria=string.Empty;
|
|
}
|
|
}
|
|
|
|
} |