Files
simapi-net/Configurations/SimApiStorageOptions.cs
T

23 lines
480 B
C#
Raw Normal View History

2024-03-23 07:29:43 +08:00
namespace SimApi.Configs;
public class SimApiStorageOptions
{
2024-03-23 07:29:43 +08:00
/// <summary>
/// S3 服务器入口地址
/// </summary>
public string Endpoint { get; set; }
2022-06-29 03:03:51 +08:00
2024-03-23 07:29:43 +08:00
/// <summary>
/// S3 服务器文件访问地址
/// </summary>
public string ServeUrl { get; set; }
2022-06-29 03:03:51 +08:00
2024-03-23 07:29:43 +08:00
/// <summary>
/// S3服务 Bucket
/// </summary>
public string Bucket { get; set; }
2022-06-29 03:03:51 +08:00
2024-03-23 07:29:43 +08:00
public string AccessKey { get; set; }
2022-06-29 03:03:51 +08:00
2024-03-23 07:29:43 +08:00
public string SecretKey { get; set; }
}