mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 15:04:37 +01:00
this took soo long, but here you are wells
This commit is contained in:
28
BLHX.Server.Common/Data/Model/ResourceFieldTemplate.cs
Normal file
28
BLHX.Server.Common/Data/Model/ResourceFieldTemplate.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user