mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
13 lines
308 B
C#
13 lines
308 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace sodoff.Model;
|
|
public class SavedData {
|
|
[JsonIgnore]
|
|
public int VikingId { get; set; }
|
|
public uint SaveId { get; set; }
|
|
public string? SerializedData { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
}
|