using APT.BaseData.Domain.ApiModel.PF;
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel.Platform
{
    /// 
    /// 穿梭框返回数据格式定义
    /// 
    public class TransferModel
        where T1 : class, new()
        where T2 : class, new()
    {
        /// 
        /// 返回左侧数据
        /// 
        public List dataSource { get; set; } = new List();
        /// 
        /// 返回右侧数据(选中数据)
        /// 
        public List selectedData { get; set; } = new List();
        /// 
        /// 总数据条数
        /// 
        public int totalCount { get; set; }
    }
}