sunpengfei
2025-08-05 89e31724da589541098ba803cf1e4596f58e5282
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 获取阿里云OSS授权信息
    /// </summary>
    [Resource([EnumResourceController.Auth])]
    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; }
    }
}