mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00

- support for separate saves for lands via ClientVersion.GetVersion(apiKey) - add Adventureland apiKey to ClientVersion
9 lines
235 B
C#
9 lines
235 B
C#
namespace sodoff.Model;
|
|
public class SavedData {
|
|
public int VikingId { get; set; }
|
|
public uint SaveId { get; set; }
|
|
public string? SerializedData { get; set; }
|
|
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
}
|