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