mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
19 lines
358 B
C#
19 lines
358 B
C#
namespace Pulsar.Features;
|
|
|
|
/// <summary>
|
|
/// Interface for Handling Journal Files.
|
|
/// </summary>
|
|
public interface IJournalHandler : IFileHandler
|
|
{
|
|
string FileName { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interface for Getting Journal Files.
|
|
/// Only used for Controllers
|
|
/// </summary>
|
|
public interface IJournalHandler<T> : IJournalHandler
|
|
{
|
|
Task<T> Get();
|
|
}
|