using System.IO; using System; namespace Timelapse.Api { public class TimelapseProject { public TimeSpan EstimatedVideoLength {get;set;} public TimeSpan EstimatedProjectLength {get;set;} public bool Estimated {get;set;} /// /// Only if Estimated is false /// public TimeSpan Interval {get;set;} public int Width {get;set;} public int Height {get;set;} // No Camera Needed public string CurrentSection {get;set;} } }