13 lines
292 B
C#
13 lines
292 B
C#
namespace RobotNet10.ScriptEngine.Shared;
|
|
|
|
/// <summary>
|
|
/// Information about a backup file.
|
|
/// </summary>
|
|
public class ScriptBackupInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public long Size { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
|