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