11 lines
No EOL
264 B
C#
11 lines
No EOL
264 B
C#
using System.Collections.Generic;
|
|
using WingsAPI.Data.Families;
|
|
|
|
namespace Plugin.FamilyImpl.Logs
|
|
{
|
|
public interface IFamilyLogManager
|
|
{
|
|
void SaveLogToBuffer(FamilyLogDto log);
|
|
IReadOnlyList<FamilyLogDto> GetFamilyLogsInBuffer();
|
|
}
|
|
} |