using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 获取阿里云OSS授权信息
///
[Resource([EnumResourceController.UserServerAuth], AllowAnonymous = true)]
public class GetAliyunOSSAcsQuery : IRequest
{
}
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; }
}
}