mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
18 lines
330 B
C#
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();
|
|
}
|
|
|
|
|
|
}
|
|
}
|