22 lines
539 B
C#
22 lines
539 B
C#
|
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;}
|
||
|
/// <summary>
|
||
|
/// Only if Estimated is false
|
||
|
/// </summary>
|
||
|
public TimeSpan Interval {get;set;}
|
||
|
public int Width {get;set;}
|
||
|
public int Height {get;set;}
|
||
|
|
||
|
// No Camera Needed
|
||
|
public string CurrentSection {get;set;}
|
||
|
|
||
|
}
|
||
|
}
|