using System; namespace CleanArchitecture.Application.Common.Interfaces { public interface IDateTime { DateTime Now { get; } } }