mirror of
https://github.com/denglihong2007/CRSim
synced 2026-06-20 16:47:33 +08:00
8 lines
137 B
C#
8 lines
137 B
C#
namespace CRSim.Core.Abstractions
|
|
{
|
|
public interface IHasTimeService
|
|
{
|
|
ITimeService TimeService { get; set; }
|
|
}
|
|
}
|