oqtane.framework/Oqtane.Server/Repository/Interfaces/ILogRepository.cs
2019-10-22 11:57:28 -04:00

12 lines
215 B
C#

using Oqtane.Models;
using System.Collections.Generic;
namespace Oqtane.Repository
{
public interface ILogRepository
{
void AddLog(Log Log);
IEnumerable<Log> GetLogs(int SiteId);
}
}