Files

9 lines
136 B
C#
Raw Permalink Normal View History

using System;
namespace ModernKeePass.Domain.Interfaces
{
public interface IDateTime
{
DateTime Now { get; }
}
}