2018-05-03 00:56:06 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Discord.WebSocket;
|
2018-05-10 02:00:26 +02:00
|
|
|
|
using Geekbot.net.Database.Models;
|
2018-05-03 00:56:06 +02:00
|
|
|
|
|
|
|
|
|
namespace Geekbot.net.Lib.UserRepository
|
|
|
|
|
{
|
|
|
|
|
public interface IUserRepository
|
|
|
|
|
{
|
|
|
|
|
Task<bool> Update(SocketUser user);
|
2018-05-10 02:00:26 +02:00
|
|
|
|
UserModel Get(ulong userId);
|
2018-05-03 00:56:06 +02:00
|
|
|
|
}
|
|
|
|
|
}
|