From 422f80805a0f9b650368995b4ca5482a789e5852 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 21 Dec 2017 07:36:30 +0000 Subject: [PATCH] Corrected missing setters. --- DiscImageChef.Devices/Device/Variables.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscImageChef.Devices/Device/Variables.cs b/DiscImageChef.Devices/Device/Variables.cs index 7a7eee05..9f2560c7 100644 --- a/DiscImageChef.Devices/Device/Variables.cs +++ b/DiscImageChef.Devices/Device/Variables.cs @@ -69,13 +69,13 @@ namespace DiscImageChef.Devices /// Gets a value indicating whether this is in error. /// /// true if error; otherwise, false. - public bool Error { get; } + public bool Error { get; private set; } /// /// Gets the last error number. /// /// The last error. - public int LastError { get; } + public int LastError { get; private set; } /// /// Gets the device type.