using System.IO; using System; namespace Timelapse.Api { public class TimelapseProject { /// /// Estimated Video Length for project /// /// Video Length of project (guess) public TimeSpan EstimatedVideoLength {get;set;} /// /// Estimated length of project (time till complete) /// /// Length of project (guess) public TimeSpan EstimatedProjectLength {get;set;} /// /// Estimated or Interval /// /// Estimated or Raw interval public bool Estimated {get;set;} /// /// Only if Estimated is false /// public TimeSpan Interval {get;set;} /// /// Width, Should not be changed after creation /// /// width public int Width {get;set;} /// /// Height, Should not be changed after creation /// /// height public int Height {get;set;} /// /// Section of project /// /// name of section public string CurrentSection {get;set;} } }