Newer
Older
TheCleanArchitecture / src / Application / Common / Interfaces / IDateTime.cs
@Derek Comartin Derek Comartin on 15 Jun 2021 153 bytes Reorganized
using System;

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