namespace RobotNet10.ScriptEngine.Shared; /// /// Information about a backup file. /// public class ScriptBackupInfo { public string FileName { get; set; } = string.Empty; public long Size { get; set; } public DateTime CreatedAt { get; set; } }