From 14282a50090993a3cbe26025aebe1b7c9a756fbc Mon Sep 17 00:00:00 2001 From: Oktawian-L Date: Thu, 7 Nov 2019 23:22:05 +0100 Subject: [PATCH] Create ClaudinarySettings.cs --- .../SubitonAPI/Helpers/ClaudinarySettings.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 SubitonAPI/SubitonAPI/Helpers/ClaudinarySettings.cs diff --git a/SubitonAPI/SubitonAPI/Helpers/ClaudinarySettings.cs b/SubitonAPI/SubitonAPI/Helpers/ClaudinarySettings.cs new file mode 100644 index 0000000..e54de93 --- /dev/null +++ b/SubitonAPI/SubitonAPI/Helpers/ClaudinarySettings.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace SubitonAPI.Helpers +{ + public class ClaudinarySettings + { + /// Gets or sets the name of the cloud. + /// The name of the cloud. + public string CloudName { get; set; } + public string ApiKey { get; set; } + public string ApiSecret { get; set; } + } +}