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>();
|
||
|
}
|
||
|
}
|