~travis-plummer/openstack-cli-powershell/master

« back to all changes in this revision

Viewing changes to Openstack.Client.Powershell/Providers/ObjectStorage/ObjectStorageDriveParameters.cs

  • Committer: Monty Taylor
  • Date: 2015-10-17 20:03:56 UTC
  • Revision ID: git-v1:803406e7e09f6f4199f7a92f11f2904ad1d6cc15
Retire stackforge/openstack-cli-powershell

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ============================================================================
2
 
Copyright 2014 Hewlett Packard
3
 
 
4
 
Licensed under the Apache License, Version 2.0 (the "License");
5
 
you may not use this file except in compliance with the License.
6
 
You may obtain a copy of the License at
7
 
 
8
 
    http://www.apache.org/licenses/LICENSE-2.0
9
 
 
10
 
Unless required by applicable law or agreed to in writing, software
11
 
distributed under the License is distributed on an "AS IS" BASIS,
12
 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 
See the License for the specific language governing permissions and
14
 
limitations under the License.
15
 
============================================================================ */
16
 
using OpenStack.Client.Powershell.Utility;
17
 
 
18
 
namespace OpenStack.Client.Powershell.Providers.Storage
19
 
{
20
 
    public class ObjectStorageDriveParameters
21
 
    {
22
 
        private Settings _settings;
23
 
 
24
 
        public Settings Settings
25
 
        {
26
 
            get { return _settings; }
27
 
            set { _settings = value; }
28
 
        }
29
 
       #region Ctors
30
 
//=================================================================================
31
 
/// <summary>
32
 
/// 
33
 
/// </summary>
34
 
/// <param name="settings"></param>
35
 
//=================================================================================
36
 
        public ObjectStorageDriveParameters()
37
 
        {          
38
 
        }
39
 
 
40
 
        #endregion
41
 
    }
42
 
}