zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Infrastructure/Aliyun/AlibabaCloudOptions.cs
2023-12-05 17:22:48 +08:00

13 lines
301 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.IdentityServer.API.Infrastructure.Aliyun
{
public class AlibabaCloudOptions
{
[AllowNull]
public string AccessKeyId { get; set; }
[AllowNull]
public string AccessKeySecret { get; set; }
}
}