From e6bbeae303c26a89bde33f2757a15a534315794c Mon Sep 17 00:00:00 2001 From: Dinesh Dwivedi Date: Wed, 29 Jun 2016 13:59:37 +0530 Subject: [PATCH] Changed readonly attributes to properties Change-Id: Ic72153894b05afcd013dbb9a708be0d1e2f72a3e Signed-off-by: Dinesh Dwivedi --- src/Tizen.System/Storage/Storage.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tizen.System/Storage/Storage.cs b/src/Tizen.System/Storage/Storage.cs index 25ba441..2625b37 100644 --- a/src/Tizen.System/Storage/Storage.cs +++ b/src/Tizen.System/Storage/Storage.cs @@ -105,15 +105,15 @@ namespace Tizen.System.Storage /// /// Storage ID /// - public readonly int Id; + public int Id { get; } /// /// Type of the storage /// - public readonly StorageArea StorageType; + public StorageArea StorageType { get; } /// /// Root directory for the storage /// - public readonly string RootDirectory; + public string RootDirectory { get; } /// /// Total storage size in bytes /// -- 2.7.4