// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using System.Threading.Tasks; namespace WingsEmu.DTOs.Relations; public interface ICharacterRelationDAO { Task GetRelationByCharacterIdAsync(long characterId, long targetId); Task SaveRelationsByCharacterIdAsync(long characterId, CharacterRelationDTO relations); Task> LoadRelationsByCharacterIdAsync(long characterId); Task RemoveRelationAsync(CharacterRelationDTO relation); }