步步为盈
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.

42 lines
966 B

using BBWY.Client.Models.APIModel.Request;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models
{
public class GetPackDetailResponse
{
public string ProcessTypeName { get; set; }
public string ProcessComboName { get; set; }
public long ProcessComboId { get; set; }
public int ProcessTaskCount { get; set; }
public decimal? DirectionalSingleFees { get; set; }
public List<PackUserResponse> PackUserList { get; set; }
public List<TaskConsumableResponse> ConsumableList { get; set; }
public decimal? ConsumableFees { get; set; }
public FeesMode? FeesMode { get; set; }
public decimal? DiscountFactor { get; set; }
public string SuggestPackUserName { get; set; }
}
public class PackUserResponse : PackUserModelRequest
{
}
public class TaskConsumableResponse : ConsumableRequest
{
}
}