EngineComponent.cs 501 B

123456789101112131415
  1. namespace WeEngine.Components
  2. {
  3. public class EngineComponent
  4. {
  5. public string Id { get; set; }
  6. public string Name { get; set; }
  7. public string Parameters { get; set; }
  8. public string Description { get; set; }
  9. public string ComponentType { get; set; }
  10. public string ComponentScript { get; set; }
  11. public string ComponentClass { get; set; }
  12. public string ComponentLib { get; set; }
  13. public bool IsStatic { get; set; }
  14. }
  15. }