mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-04-29 04:05:02 +02:00
9 lines
249 B
C#
9 lines
249 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Agent.Instance.Backups;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record InstanceBackupConfiguration(
|
|
[property: MemoryPackOrder(0)] InstanceBackupSchedule Schedule
|
|
);
|