11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
|
|
using System;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.DASFactory
|
||
|
|
{
|
||
|
|
public interface ITimeSynchronization
|
||
|
|
{
|
||
|
|
bool SupportsTimeSynchronization { get; }
|
||
|
|
DateTime SystemBaseTime { get; }
|
||
|
|
}
|
||
|
|
}
|