using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class FileOutInfoDto
{
///
/// 域名
///
public string Domain { get; set; }
///
/// 文件地址
///
public string FileUrl { get; set; }
///
/// 参数
///
public string Param { get; set; }
///
/// 腾讯返回完整的rul
///
public string AllUrl { get; set; }
public string SeeUrl { get; set; }
}
}