├── .gitignore ├── .idea ├── .idea.DevelopersGame │ ├── .idea │ │ ├── contentModel.xml │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── projectSettingsUpdater.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ └── riderModule.iml └── config │ └── applicationhost.config ├── DevelopersGame.sln ├── DevelopersGame.sln.DotSettings.user └── src ├── DevelopersGame.DataAccess.Migrations ├── DevelopersGame.DataAccess.Migrations.csproj └── Migrations │ ├── 20200227201757_AddedUserTable.Designer.cs │ ├── 20200227201757_AddedUserTable.cs │ ├── 20200227203404_AddedRoles.Designer.cs │ ├── 20200227203404_AddedRoles.cs │ └── DataContextModelSnapshot.cs ├── DevelopersGame.DataAccess ├── DataContext.cs ├── DevelopersGame.DataAccess.csproj ├── Entities │ ├── BaseEntity.cs │ ├── IEntity.cs │ ├── Role.cs │ ├── User.cs │ └── UserRoles.cs ├── Enums │ └── RankType.cs ├── Repositories │ ├── DbRepository.cs │ └── IDbRepository.cs └── migration.ps1 ├── DevelopersGame.Domain ├── Abstractions │ ├── ICommandService.cs │ └── TelegramCommand.cs ├── Commands │ ├── HelpCommand.cs │ ├── MainCommand.cs │ ├── RankCommand.cs │ ├── ShopCommand.cs │ └── StartCommand.cs ├── DevelopersGame.Domain.csproj └── Services │ └── CommandService.cs └── DevelopersGame.Web ├── Controllers └── BotController.cs ├── DevelopersGame.Web.csproj ├── Program.cs ├── Properties └── launchSettings.json ├── ServiceCollectionExtensions.cs ├── Startup.cs └── appsettings.json /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]in/ 2 | [Oo]bj/ 3 | [Dd]ebug/ 4 | [Rr]ealese/ 5 | *.zip -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/contentModel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/.idea.DevelopersGame/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 42 | 43 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 160 | 161 | 175 | 176 | 190 | 191 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 |