-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
5347d54
commit ee4e9c2
Showing
24 changed files
with
725 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// Copyright (c) PlanB. GmbH. All Rights Reserved. | ||
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. | ||
|
||
namespace PlanB.Butler.Bot | ||
{ | ||
/// <summary> | ||
/// BotConfig. | ||
/// </summary> | ||
public class BotConfig | ||
{ | ||
/// <summary> | ||
/// Gets or sets the storage account URL. | ||
/// </summary> | ||
/// <value> | ||
/// The storage account URL. | ||
/// </value> | ||
public string StorageAccountUrl { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the storage account key. | ||
/// </summary> | ||
/// <value> | ||
/// The storage account key. | ||
/// </value> | ||
public string StorageAccountKey { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the storage account connection string. | ||
/// </summary> | ||
/// <value> | ||
/// The storage account connection string. | ||
/// </value> | ||
public string StorageAccountConnectionString { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the service bus connection string. | ||
/// </summary> | ||
/// <value> | ||
/// The service bus connection string. | ||
/// </value> | ||
public string ServiceBusConnectionString { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the get daily overview function. | ||
/// </summary> | ||
/// <value> | ||
/// The get daily overview function. | ||
/// </value> | ||
public string GetDailyOverviewFunc { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the get salary deduction. | ||
/// </summary> | ||
/// <value> | ||
/// The get salary deduction. | ||
/// </value> | ||
public string GetSalaryDeduction { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the get daily user overview function. | ||
/// </summary> | ||
/// <value> | ||
/// The get daily user overview function. | ||
/// </value> | ||
public string GetDailyUserOverviewFunc { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ButlerBot | ||
namespace PlanB.Butler.Bot | ||
{ | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ButlerBot | ||
namespace PlanB.Butler.Bot | ||
{ | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.