Add front for bundle
This commit is contained in:
11
src/Managing.Api/Models/Requests/RunBundleBacktestRequest.cs
Normal file
11
src/Managing.Api/Models/Requests/RunBundleBacktestRequest.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Managing.Api.Controllers;
|
||||
|
||||
namespace Managing.Api.Models.Requests;
|
||||
|
||||
public class RunBundleBacktestRequest
|
||||
{
|
||||
[Required] public string Name { get; set; } = string.Empty;
|
||||
|
||||
[Required] public List<RunBacktestRequest> Requests { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user