2021-12-27 16:22:41 +00:00

18 lines
330 B
C#

namespace QRBee.Api.Services.Database
{
public class Storage: IStorage
{
public void PutUserInfo(UserInfo info)
{
throw new NotImplementedException();
}
public UserInfo GetUserInfo(string email)
{
throw new NotImplementedException();
}
}
}