Liam Pietralla
f577617b4d
All checks were successful
Build and Publish / Build Yale Access Backend (push) Successful in 28s
Build and Publish / Build Yale Access Frontend (push) Successful in 47s
Build and Publish / Push Yale Access Backend Docker Image (push) Successful in 9s
Build and Publish / Push Yale Access Frontend Docker Image (push) Successful in 10s
13 lines
381 B
C#
13 lines
381 B
C#
namespace YaleAccess.Models.Options
|
|
{
|
|
public class TwiloOptions
|
|
{
|
|
public const string Twilio = "Twilio";
|
|
|
|
public string AccountSid { get; set; } = string.Empty;
|
|
public string AuthToken { get; set; } = string.Empty;
|
|
public string FromNumber { get; set; } = string.Empty;
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
}
|