Infrastructure/OpenAuth.App/ServiceApp/Response/InsTaskForAdminResp.cs

17 lines
402 B
C#

using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class InsTaskForAdminResp: InsTask
{
public int? ShpCount { get; set; }
public int ReceiveShpCount { get; set; }
public int NoReceiveShpCount { get; set; }
}
}