forked from pracplayopen/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkin.cs
More file actions
28 lines (27 loc) · 792 Bytes
/
Copy pathSkin.cs
File metadata and controls
28 lines (27 loc) · 792 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TradeLink.API
{
public interface Skin
{
string[] TickFiles { get; set; }
/// <summary>
/// xml encoded properties of response and their values
/// </summary>
string Properties { get; set; }
/// <summary>
/// fullname (namespace.classname) of response in question
/// </summary>
string ResponseName { get; set; }
/// <summary>
/// full path name to local dll containing classes.
/// </summary>
string ResponseDLL { get; set; }
/// <summary>
/// identifies where skin is valid
/// </summary>
bool isValid { get; }
}
}