More documentation.

This commit is contained in:
Jindra Petřík
2024-08-06 06:17:00 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions

View File

@@ -17,18 +17,33 @@
package com.jpexs.decompiler.flash;
/**
*
* FFDec version information.
* @author JPEXS
*/
public class Version {
/**
* Git tag name
*/
public String tagName;
/**
* Version name
*/
public String versionName;
/**
* Release date
*/
public String releaseDate;
/**
* Is this a prerelease version?
*/
public boolean prerelease;
/**
* Description
*/
public String description;
}