using Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Services { public interface IEmoteRepository { List GetAll(); List GetBUser(string userID); Emote CreateCustomEmote(Emote emote); } }