17 lines
328 B
C#

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