using System.Collections.Generic; using System.Threading.Tasks; using PhoenixLib.DAL; namespace WingsEmu.DTOs.Mails; public interface IAccountMailDao : IGenericAsyncLongRepository { Task> GetByAccountIdAsync(long accountId); }