From: Dinesh Dwivedi Date: Wed, 29 Jun 2016 08:29:37 +0000 (+0530) Subject: Changed readonly attributes to properties X-Git-Tag: submit/trunk/20170823.075128~81^2~36^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6bbeae303c26a89bde33f2757a15a534315794c;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Changed readonly attributes to properties Change-Id: Ic72153894b05afcd013dbb9a708be0d1e2f72a3e Signed-off-by: Dinesh Dwivedi --- 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 ///