allow toggle of automated penalties display on the webfront
issue #112 fix small issue with script plugin loading
This commit is contained in:
@ -2,9 +2,24 @@
|
||||
|
||||
namespace WebfrontCore.ViewModels
|
||||
{
|
||||
/// <summary>
|
||||
/// helper class to determine the filters to apply to penalties
|
||||
/// </summary>
|
||||
public class PenaltyFilterInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// number of items offset from the start of the list
|
||||
/// </summary>
|
||||
public int Offset { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// show only a certain type of penalty
|
||||
/// </summary>
|
||||
public PenaltyType ShowOnly { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ignore penalties that are automated
|
||||
/// </summary>
|
||||
public bool IgnoreAutomated { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user