using Furion.ConfigurableOptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 阿里云配置
///
public class AliyunOptions : IConfigurableOptions
{
public AliyunOSSOptions OSS { get; set; }
public AliyunSMSOptions SMS { get; set; }
}
///
/// 阿里云OSS配置
///
public class AliyunOSSOptions
{
public string AccessKeyId { get; set; }
public string AccessSecret { get; set; }
public string RegionId { get; set; }
public string Endpoint { get; set; }
public string BucketName { get; set; }
public string Url { get; set; }
public string RoleArn { get; set; }
public string RoleSessionName { get; set; }
public string Policy { get; set; }
public int DurationSeconds { get; set; }
}
///
/// 阿里云短信配置
///
public class AliyunSMSOptions
{
}
}