Files
DP44/Common/DTS.CommonCore/.svn/pristine/f8/f896102d6e2a56b38fc2e7e48efe09235b6cf24e.svn-base

11 lines
219 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace DTS.Common.Interface.DASFactory
{
public interface ITimeSynchronization
{
bool SupportsTimeSynchronization { get; }
DateTime SystemBaseTime { get; }
}
}