- namespace WeEngine.Components
- {
- public class EngineComponent
- {
- public string Id { get; set; }
- public string Name { get; set; }
- public string Parameters { get; set; }
- public string Description { get; set; }
- public string ComponentType { get; set; }
- public string ComponentScript { get; set; }
- public string ComponentClass { get; set; }
- public string ComponentLib { get; set; }
- public bool IsStatic { get; set; }
- }
- }
|