renamed projects and namespaces

This commit is contained in:
clodan
2025-03-07 13:16:43 +00:00
parent 87200e46cf
commit 270f095413
1076 changed files with 3381 additions and 3402 deletions
@@ -0,0 +1,59 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Eft.Game;
public record VersionValidateRequestData : IRequestData
{
[JsonPropertyName("version")]
public Version? Version
{
get;
set;
}
[JsonPropertyName("develop")]
public bool? Develop
{
get;
set;
}
}
public record Version
{
[JsonPropertyName("major")]
public string? Major
{
get;
set;
}
[JsonPropertyName("minor")]
public string? Minor
{
get;
set;
}
[JsonPropertyName("game")]
public string? Game
{
get;
set;
}
[JsonPropertyName("backend")]
public string? Backend
{
get;
set;
}
[JsonPropertyName("taxonomy")]
public string? Taxonomy
{
get;
set;
}
}