// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using System.Threading.Tasks; using PhoenixLib.DAL; namespace WingsAPI.Data.Families; public interface IFamilyMembershipDao : IGenericAsyncLongRepository { Task GetByCharacterIdAsync(long characterId); Task> GetByFamilyIdAsync(long familyId); }