feat: backups

This commit is contained in:
2024-02-14 16:49:19 +01:00
parent e94d256fc9
commit f4a508489f
7 changed files with 340 additions and 0 deletions

View 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; }
}
}