├── .gitignore ├── price_alert.sln └── price_alert_v2 ├── .gitignore ├── Functions ├── receive_command.cs └── watcher.cs ├── Models ├── Message.cs └── WatcherRequest.cs ├── Tools ├── Bittrex.cs ├── Constants.cs └── TwilioSender.cs ├── host.json └── price_alert_v2.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/.gitignore -------------------------------------------------------------------------------- /price_alert.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert.sln -------------------------------------------------------------------------------- /price_alert_v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/.gitignore -------------------------------------------------------------------------------- /price_alert_v2/Functions/receive_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Functions/receive_command.cs -------------------------------------------------------------------------------- /price_alert_v2/Functions/watcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Functions/watcher.cs -------------------------------------------------------------------------------- /price_alert_v2/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Models/Message.cs -------------------------------------------------------------------------------- /price_alert_v2/Models/WatcherRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Models/WatcherRequest.cs -------------------------------------------------------------------------------- /price_alert_v2/Tools/Bittrex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Tools/Bittrex.cs -------------------------------------------------------------------------------- /price_alert_v2/Tools/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Tools/Constants.cs -------------------------------------------------------------------------------- /price_alert_v2/Tools/TwilioSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/Tools/TwilioSender.cs -------------------------------------------------------------------------------- /price_alert_v2/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/host.json -------------------------------------------------------------------------------- /price_alert_v2/price_alert_v2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/functions-durable-csharp-bittrex-watcher/HEAD/price_alert_v2/price_alert_v2.csproj --------------------------------------------------------------------------------