Files
simapi-net/Configurations/SimApiStorageOptions.cs
T

11 lines
303 B
C#
Raw Permalink Normal View History

namespace SimApi.Configs
{
public class SimApiStorageOptions
{
public string Endpoint { get; set; }
public string ServeUrl { get; set; }
public string Bucket { get; set; }
public string AccessKey { get; set; }
public string SecretKey { get; set; }
}
}