diff --git a/src/Dto/DataSourceDto.cs b/src/Dto/DataSourceDto.cs index 518e7ab..74705a1 100644 --- a/src/Dto/DataSourceDto.cs +++ b/src/Dto/DataSourceDto.cs @@ -12,9 +12,11 @@ public class DataSourceDto public float Precision { get; set; } - [JsonIgnore] + // [TODO] [Dave] Add a property to store the athletes and the activities so maybe adapt to have a tiny DTO + [JsonIgnore] public IEnumerable? Athletes { get; set; } + // [TODO] [Dave] Add a property to store the athletes and the activities so maybe adapt to have a tiny DTO [JsonIgnore] public IEnumerable? Activities { get; set; } } \ No newline at end of file diff --git a/src/HeartTrackAPI/AppBootstrap.cs b/src/HeartTrackAPI/AppBootstrap.cs index 4fa5f7f..daa7193 100644 --- a/src/HeartTrackAPI/AppBootstrap.cs +++ b/src/HeartTrackAPI/AppBootstrap.cs @@ -14,7 +14,6 @@ using StubAPI; using StubbedContextLib; using Swashbuckle.AspNetCore.SwaggerGen; - namespace HeartTrackAPI; public class AppBootstrap(IConfiguration configuration)