mirror of
https://udrimavric.com/MAVRIC/Stratasys-Fortus-450mc.git
synced 2025-01-22 23:28:51 -05:00
19 lines
496 B
C#
19 lines
496 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Editor.DefintionsUI
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class PackageJsonDefinition
|
|||
|
{
|
|||
|
public string name;
|
|||
|
public string displayName;
|
|||
|
public string version;
|
|||
|
public string unity;
|
|||
|
public string description;
|
|||
|
public List<string> keywords = new List<string>();
|
|||
|
public string category;
|
|||
|
public Dictionary<string, string> dependencies = new Dictionary<string, string>();
|
|||
|
}
|
|||
|
}
|