// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using System.Threading.Tasks; using PhoenixLib.DAL; namespace WingsAPI.Data.Families; public interface IFamilyLogDAO : IGenericAsyncLongRepository { /// /// Gets a list of 200 logs ordered by DateTime /// /// /// Task> GetLogsByFamilyIdAsync(long familyId); }