using System.ComponentModel.DataAnnotations;
namespace Managing.Domain.Backtests;
///
/// Request model for scenario configuration without user information
///
public class ScenarioRequest
{
///
/// The name of the scenario
///
[Required]
public string Name { get; set; }
///
/// List of indicator configurations for this scenario
///
[Required]
public List Indicators { get; set; } = new();
///
/// The loopback period for the scenario
///
public int LookbackPeriod { get; set; }
}