-
Notifications
You must be signed in to change notification settings - Fork 0
/
TypeNameAndObjectValue.cs
41 lines (38 loc) · 1.09 KB
/
TypeNameAndObjectValue.cs
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
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ErrorUnit.Interfaces
{
/// <summary>
/// Type name and object value
/// </summary>
public class TypeNameAndObjectValue
{
/// <summary>
/// Initializes a new instance of the <see cref="TypeNameAndObjectValue"/> class.
/// </summary>
/// <param name="typeName">Full Name of the type.</param>
/// <param name="value">The object value.</param>
public TypeNameAndObjectValue(string typeName, object value)
{
TypeName = typeName;
Value = value;
}
/// <summary>
/// Gets or sets the full name of the type.
/// </summary>
/// <value>
/// The full name of the type.
/// </value>
public string TypeName { get; set; }
/// <summary>
/// Gets or sets the object value.
/// </summary>
/// <value>
/// The object value.
/// </value>
public object Value { get; set; }
}
}