Changed readonly attributes to properties
authorDinesh Dwivedi <dinesh.d@samsung.com>
Wed, 29 Jun 2016 08:29:37 +0000 (13:59 +0530)
committerDinesh Dwivedi <dinesh.d@samsung.com>
Wed, 29 Jun 2016 08:32:08 +0000 (14:02 +0530)
Change-Id: Ic72153894b05afcd013dbb9a708be0d1e2f72a3e
Signed-off-by: Dinesh Dwivedi <dinesh.d@samsung.com>
Tizen.System/Storage/Storage.cs

index 25ba441..2625b37 100644 (file)
@@ -105,15 +105,15 @@ namespace Tizen.System.Storage
         /// <summary>
         /// Storage ID
         /// </summary>
-        public readonly int Id;
+        public int Id { get; }
         /// <summary>
         /// Type of the storage
         /// </summary>
-        public readonly StorageArea StorageType;
+        public StorageArea StorageType { get; }
         /// <summary>
         /// Root directory for the storage
         /// </summary>
-        public readonly string RootDirectory;
+        public string RootDirectory { get; }
         /// <summary>
         /// Total storage size in bytes
         /// </summary>