mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-07-06 20:09:43 -04:00
feat: backups
This commit is contained in:
14
Minecraft-Realms-Emulator/Entities/Backup.cs
Normal file
14
Minecraft-Realms-Emulator/Entities/Backup.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Minecraft_Realms_Emulator.Entities
|
||||
{
|
||||
public class Backup
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public World World { get; set; }
|
||||
public string BackupId { get; set; }
|
||||
public long LastModifiedDate { get; set; }
|
||||
public int Size { get; set; }
|
||||
public JsonDocument Metadata { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user