Added lots of commands

Simplified KeePass client
This commit is contained in:
Geoffroy BONNEVILLE
2020-03-26 12:25:22 +01:00
parent 4b1210f414
commit a17d6b05ae
46 changed files with 1057 additions and 246 deletions

View File

@@ -0,0 +1,10 @@
using System;
using ModernKeePass.Domain.Interfaces;
namespace ModernKeePass.Infrastructure.Common
{
public class MachineDateTime: IDateTime
{
public DateTime Now => DateTime.Now;
}
}