server-master/srcs/WingsAPI.Data/Mails/ICharacterNoteDao.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
282 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Mails;
public interface ICharacterNoteDao : IGenericAsyncLongRepository<CharacterNoteDto>
{
Task<List<CharacterNoteDto>> GetByCharacterIdAsync(long characterId);
}