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