-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameter.cs
More file actions
33 lines (31 loc) · 847 Bytes
/
Parameter.cs
File metadata and controls
33 lines (31 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Copyright 2011 Steve Pynylo
* All Rights Reserved.
*
* All information contained herein is, and remains the property of Steve Pynylo.
* The intellectual and technical concepts contained herein are proprietary to
* Steve Pynylo under the trading name Isle. and may be covered by
* Australian and Foreign Patents, patents in process, and are protected by
* trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Steve Pynylo.
*/
namespace Isle.IOC
{
/// <summary>
/// A simple wrapper class for parameters to be sent through the IOC for initializiation.
/// </summary>
public class Parameter
{
public string Name
{
get;
set;
}
public object ParameterValue
{
get;
set;
}
}
}