12 lines
267 B
C#
12 lines
267 B
C#
namespace Finch.Mails.Scaleway;
|
|
|
|
public class ScalewayOptions
|
|
{
|
|
public string ApiUrl { get; set; } = "https://api.scaleway.com";
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
public string Region { get; set; } = "fr-par";
|
|
} |