// Copyright 2016 by Samsung Electronics, Inc., // // This software is the confidential and proprietary information // of Samsung Electronics, Inc. ("Confidential Information"). You // shall not disclose such Confidential Information and shall use // it only in accordance with the terms of the license agreement // you entered into with Samsung. namespace Tizen.System { /// /// Enumeration for storage area types. /// public enum StorageArea { /// /// Internal device storage (built-in storage in a device, non-removable) /// Internal = Interop.Storage.StorageArea.Internal, /// /// External storage /// External = Interop.Storage.StorageArea.External, } }