You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
443 B
19 lines
443 B
using Application.Domain.Entities;
|
|
using Infrastructure.Application;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Platform.Api.Api
|
|
{
|
|
public class QueryDataModel : PagedListModel<IoTData>
|
|
{
|
|
[Required]
|
|
public string Number { get; set; }
|
|
[Required]
|
|
public string Key { get; set; }
|
|
public DateTime? Start { get; set; }
|
|
public DateTime? End { get; set; }
|
|
|
|
}
|
|
}
|