10 lines
268 B
C#
10 lines
268 B
C#
using MarketAlly.GitCommitEditor.Models;
|
|
|
|
namespace MarketAlly.GitCommitEditor.Services;
|
|
|
|
public interface IStateRepository
|
|
{
|
|
Task<ImproverState> LoadAsync(CancellationToken ct = default);
|
|
Task SaveAsync(ImproverState state, CancellationToken ct = default);
|
|
}
|