using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
using QuantConnect.Api;
namespace QuantConnect.API
{
///
/// Logs from a live algorithm
///
public class LiveLog : RestResponse
{
///
/// List of logs from the live algorithm
///
[JsonProperty(PropertyName = "LiveLogs")]
public List Logs { get; set; }
}
}