25 lines
548 B
C#
25 lines
548 B
C#
namespace TimelapseApi
|
|
{
|
|
public class ExtensionInfo
|
|
{
|
|
public ExtensionInfo()
|
|
{
|
|
name="N/A";
|
|
author="N/A";
|
|
version="0.0.0";
|
|
description="";
|
|
}
|
|
/* {
|
|
"name": "TimelapseExtension0001",
|
|
"author": "YourNameOrCompanyName",
|
|
"version": "1.0.0",
|
|
"description": "Some Description"
|
|
}*/
|
|
public string name {get;set;}
|
|
|
|
public string author {get;set;}
|
|
public string version {get;set;}
|
|
|
|
public string description {get;set;}
|
|
}
|
|
} |