26 lines
523 B
C#
26 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
[Serializable]
|
|
public class StoreOwnershipEntry
|
|
{
|
|
public int storeItemId;
|
|
public bool owned;
|
|
public List<int> unlockedStorySonIds = new List<int>();
|
|
}
|
|
|
|
[Serializable]
|
|
public class StoreOwnershipPayload
|
|
{
|
|
public int version;
|
|
public long lastUpdatedUtcTicks;
|
|
public List<StoreOwnershipEntry> entries = new List<StoreOwnershipEntry>();
|
|
}
|
|
|
|
[Serializable]
|
|
public class StoreOwnershipEnvelope
|
|
{
|
|
public string payload;
|
|
public string signature;
|
|
}
|