mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-06-26 16:26:13 -04:00
11 lines
209 B
C#
11 lines
209 B
C#
using LibationFileManager;
|
|
|
|
namespace LibationUiBase.ProcessQueue;
|
|
|
|
public class BadBookSessionContext
|
|
{
|
|
public Configuration.BadBookAction? Override { get; set; }
|
|
|
|
public void Reset() => Override = null;
|
|
}
|