FormattedObject.cs 428 B

1234567891011121314151617
  1. using System;
  2. namespace OpenVIII.Fields.Scripts
  3. {
  4. public sealed class FormattedObject
  5. {
  6. public Field.Info Field { get; }
  7. public String ObjectName { get; }
  8. public String Scripts { get; }
  9. public FormattedObject(Field.Info field, String objectName, String scripts)
  10. {
  11. Field = field;
  12. ObjectName = objectName;
  13. Scripts = scripts;
  14. }
  15. }
  16. }