a1d634b66e
Co-authored-by: rlauu <46294892+rlauu@users.noreply.github.com> Co-authored-by: Kilian von Pflugk <github@jumoog.io>
22 lines
573 B
C#
22 lines
573 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntroSkipper.Data
|
|
{
|
|
/// <summary>
|
|
/// /// Update analyzer actions request.
|
|
/// </summary>
|
|
public class UpdateAnalyzerActionsRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets season ID.
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets analyzer actions.
|
|
/// </summary>
|
|
public IReadOnlyDictionary<AnalysisMode, AnalyzerAction> AnalyzerActions { get; set; } = new Dictionary<AnalysisMode, AnalyzerAction>();
|
|
}
|
|
}
|