12 lines
No EOL
279 B
C#
12 lines
No EOL
279 B
C#
using System.Threading.Tasks;
|
|
using Discord.WebSocket;
|
|
using Geekbot.net.Database.Models;
|
|
|
|
namespace Geekbot.net.Lib.UserRepository
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
Task<bool> Update(SocketUser user);
|
|
UserModel Get(ulong userId);
|
|
}
|
|
} |