using System; using SUISS.Storage; public interface IOngoingReward : IStorable { bool IsActive { get; } void Run(); bool Add(IOngoingReward reward); }