Files
simapi-net/Configurations/SimApiStorageOptions.cs
T

23 lines
492 B
C#
Raw Normal View History

2024-04-16 06:57:56 +08:00
namespace SimApi.Configurations;
2024-03-23 07:29:43 +08:00
public class SimApiStorageOptions
{
2024-03-23 07:29:43 +08:00
/// <summary>
/// S3 服务器入口地址
/// </summary>
2024-07-26 08:11:21 +08:00
public string? Endpoint { get; set; }
2022-06-29 03:03:51 +08:00
2024-03-23 07:29:43 +08:00
/// <summary>
/// S3 服务器文件访问地址
/// </summary>
2024-07-26 08:11:21 +08:00
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>
2024-07-26 08:11:21 +08:00
public string? Bucket { get; set; }
2022-06-29 03:03:51 +08:00
2024-07-26 08:11:21 +08:00
public string? AccessKey { get; set; }
2022-06-29 03:03:51 +08:00
2024-07-26 08:11:21 +08:00
public string? SecretKey { get; set; }
}