11 lines
203 B
Plaintext
11 lines
203 B
Plaintext
|
|
namespace DTS.Common.Interface.DASFactory.Config
|
||
|
|
{
|
||
|
|
public interface IEID
|
||
|
|
{
|
||
|
|
string ID { get; set; }
|
||
|
|
byte[] Blob { get; set; }
|
||
|
|
|
||
|
|
bool IsValid();
|
||
|
|
}
|
||
|
|
}
|