using System;
using System.Collections.Generic;
namespace IntroSkipper.Data
{
///
/// /// Update analyzer actions request.
///
public class UpdateAnalyzerActionsRequest
{
///
/// Gets or sets season ID.
///
public Guid Id { get; set; }
///
/// Gets or sets analyzer actions.
///
public IReadOnlyDictionary AnalyzerActions { get; set; } = new Dictionary();
}
}