File tree Expand file tree Collapse file tree
src/shared/CodeBreaker.Shared.ReportService Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111### APIs
1212
13- | Banch| Game API| Bot| Live| User|
14- | :--:| :--:| :--:| :--:| :--:|
15- ** main** |[ ![ API] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreakerapi-AutoDeployTrigger-ee54dca3-868c-4c78-9b6c-72e2c6719e10.yml/badge.svg )] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreakerapi-AutoDeployTrigger-ee54dca3-868c-4c78-9b6c-72e2c6719e10.yml ) |[ ![ Bot] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-bot.yml/badge.svg )] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-bot.yml ) |[ ![ Live] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-live.yml/badge.svg )] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-live.yml ) |[ ![ User] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-user.yml/badge.svg )] ( https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-user.yml )
13+ | Banch| Game API| Bot| Live| User| Report-WebApi | Report-QueueWorker |
14+ | :--:| :--:| :--:| :--:| :--:| :--: | :--: |
15+ **main**|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreakerapi-AutoDeployTrigger-ee54dca3-868c-4c78-9b6c-72e2c6719e10.yml)|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-bot.yml)|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-live.yml)|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-user.yml)|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-report-webapi.yml)|[](https://github.com/CNILearn/codebreaker/actions/workflows/codebreaker-report-queueworker.yml)
1616
1717### Blazor Clients
1818
Original file line number Diff line number Diff line change 1+ namespace CodeBreaker . Shared . ReportService . Api ;
2+
3+ public record class GameDto (
4+ Guid Id ,
5+ DateTime Start ,
6+ DateTime ? End
7+ ) ;
8+
9+ public record class GetGamesResponse ( IAsyncEnumerable < GameDto > Games ) ;
10+
11+ public record class GetGameResponse ( GameDto game ) ;
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
3+ <PropertyGroup >
4+ <TargetFramework >net7.0</TargetFramework >
5+ <ImplicitUsings >enable</ImplicitUsings >
6+ <Nullable >enable</Nullable >
7+ </PropertyGroup >
8+
9+ </Project >
You can’t perform that action at this time.
0 commit comments