Traveller/scripts/dataPack/local/LocalDataPackManifest.cs

18 lines
522 B
C#
Raw Normal View History

2024-04-28 13:55:19 +00:00
using System.IO;
using System.Linq;
using System.Text.Json;
using System.Threading.Tasks;
using ColdMint.scripts.serialization;
namespace ColdMint.scripts.dataPack.local;
public class LocalDataPackManifest: IDataPackManifest
{
public string? ID { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public string? VersionName { get; set; }
public int? VersionCode { get; set; }
public string? Author { get; set; }
public string? Namespace { get; set; }
}