refactor(project): renamed project and namespace

This commit is contained in:
Yui
2025-11-04 16:32:31 -03:00
parent a4b2bf4bcf
commit 9e701275ec
11 changed files with 13 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace WeebSights.Models;
public record WeebItemConfig()
{
[JsonPropertyName("id")]
public MongoId Id { get; set; }
[JsonPropertyName("clone_from_tpl")]
public MongoId CloneFromTpl { get; set; }
[JsonPropertyName("bundle_path")]
public string BundlePath { get; set; }
[JsonPropertyName("price")]
public int Price { get; set; }
[JsonPropertyName("ergonomics")]
public int Ergonomics { get; set; }
}

View File

@@ -0,0 +1,16 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace WeebSights.Models;
public record WeebLocaleConfig()
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("short_name")]
public string ShortName { get; set; }
[JsonPropertyName("description")]
public string Description { get; set; }
}