├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── src └── WhyNotWinAI ├── Helpers ├── DataHelper.cs ├── Logger.cs └── ViewHelper.cs ├── SystemBase.cs ├── Views ├── checksPageView.Designer.cs ├── checksPageView.cs └── checksPageView.resx └── frontend.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/README.md -------------------------------------------------------------------------------- /src/WhyNotWinAI/Helpers/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Helpers/DataHelper.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/Helpers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Helpers/Logger.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/Helpers/ViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Helpers/ViewHelper.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/SystemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/SystemBase.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/Views/checksPageView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Views/checksPageView.Designer.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/Views/checksPageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Views/checksPageView.cs -------------------------------------------------------------------------------- /src/WhyNotWinAI/Views/checksPageView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/Views/checksPageView.resx -------------------------------------------------------------------------------- /src/WhyNotWinAI/frontend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtbybel/WhyNotWinAI/HEAD/src/WhyNotWinAI/frontend.html --------------------------------------------------------------------------------