using System.Collections.Generic; using System.Threading.Tasks; namespace PluralKit.Core { public partial class ModelRepository { public Task GetMessageContext(ulong account, ulong guild, ulong channel) => _db.QuerySingleProcedure("message_context", new { account_id = account, guild_id = guild, channel_id = channel }); public Task> GetProxyMembers(ulong account, ulong guild) => _db.QueryProcedure("proxy_members", new { account_id = account, guild_id = guild }); } }