using MediatR;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace FlexJobApi.Core
|
{
|
/// <summary>
|
/// 获取阿里云OSS授权信息
|
/// </summary>
|
public class GetAliyunOSSAcsQuery : IRequest<GetAliyunOSSAcsQueryResult>
|
{
|
}
|
|
public class GetAliyunOSSAcsQueryResult
|
{
|
public string Expiration { get; set; }
|
|
public string OssAccessSecret { get; set; }
|
|
public string OssAccessKeyId { get; set; }
|
|
public string SecurityToken { get; set; }
|
|
public string RequestId { get; set; }
|
}
|
}
|