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.
20 lines
581 B
20 lines
581 B
using AIK.Models.ApiModels.Integral;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Models.ApiModels.Record
|
|
{
|
|
public class ApiResponseIntegralRecord : ApiResponse
|
|
{
|
|
public List<IntegralRecord> Records { get; set; }
|
|
public int Total { get; set; }
|
|
public int Size { get; set; }
|
|
public int Current { get; set; }
|
|
public List<OrderItem> Orders { get; set; }
|
|
public bool SearchCount { get; set; }
|
|
public int Pages { get; set; }
|
|
}
|
|
}
|
|
|