this took soo long, but here you are wells

This commit is contained in:
rfi
2024-02-22 16:11:23 +07:00
parent 5d39e1c6be
commit db93c8f49d
18 changed files with 1210 additions and 17 deletions

View File

@@ -0,0 +1,28 @@
using System.Text.Json.Serialization;
namespace BLHX.Server.Common.Data
{
public class ResourceFieldTemplate : Model
{
[JsonPropertyName("hour_time")]
public uint HourTime { get; set; }
[JsonPropertyName("level")]
public uint Level { get; set; }
[JsonPropertyName("production")]
public uint Production { get; set; }
[JsonPropertyName("store")]
public uint Store { get; set; }
[JsonPropertyName("time")]
public uint Time { get; set; }
[JsonPropertyName("use")]
public List<uint> Use { get; set; } = [];
[JsonPropertyName("user_level")]
public uint UserLevel { get; set; }
}
}