1
0
mirror of https://github.com/XFox111/MuiCharts.git synced 2026-04-22 06:51:05 +03:00

Added ASP.NET backend with SQLite

This commit is contained in:
2024-02-22 11:06:44 +00:00
parent d96b683a90
commit be8cc7ded4
39 changed files with 2109 additions and 0 deletions
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\MuiCharts.Domain\MuiCharts.Domain.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace MuiCharts.Contracts.Point;
/// <summary>
/// Represents a request to get a collection of points.
/// </summary>
public record class GetPointsRequest(
[Range(1, int.MaxValue)]
int Page = 1,
[Range(1, int.MaxValue)]
int Count = 50
);
@@ -0,0 +1,11 @@
namespace MuiCharts.Contracts.Point;
/// <summary>
/// Represents the response object for retrieving points.
/// </summary>
public record class GetPointsResponse(
PointResponse[] Points,
int TotalCount,
int Count,
int Page
);
@@ -0,0 +1,10 @@
namespace MuiCharts.Contracts.Point;
/// <summary>
/// Represents a response object containing information about a point.
/// </summary>
public record PointResponse(
int Id,
string Name,
int Height
);
@@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
namespace MuiCharts.Contracts.Point;
/// <summary>
/// Represents a request to upsert a point.
/// </summary>
public record UpsertPointRequest(
[MinLength(1)] string Name,
int Height
);
@@ -0,0 +1,14 @@
using MuiCharts.Domain.Enums;
namespace MuiCharts.Contracts.Track;
/// <summary>
/// Represents a response object for a track.
/// </summary>
public record TrackResponse(
int FirstId,
int SecondId,
int Distance,
Surface Surface,
MaxSpeed MaxSpeed
);
@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
using MuiCharts.Domain.Enums;
namespace MuiCharts.Contracts.Track;
/// <summary>
/// Represents a request to upsert a track.
/// </summary>
public record UpsertTrackRequest(
[Range(0, int.MaxValue)] int FirstId,
[Range(0, int.MaxValue)] int SecondId,
[Range(1, int.MaxValue)] int Distance,
Surface Surface,
MaxSpeed MaxSpeed
);