// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using System.Threading.Tasks; using PhoenixLib.DAL; namespace WingsEmu.DTOs.Mails; public interface ICharacterMailDao : IGenericAsyncLongRepository { Task> GetByCharacterIdAsync(long characterId); }