FormattedObject.cs 536 B

123456789101112131415161718192021222324
  1. namespace OpenVIII.Fields.Scripts
  2. {
  3. public sealed class FormattedObject
  4. {
  5. #region Constructors
  6. public FormattedObject(Field.Info field, string objectName, string scripts)
  7. {
  8. Field = field;
  9. ObjectName = objectName;
  10. Scripts = scripts;
  11. }
  12. #endregion Constructors
  13. #region Properties
  14. public Field.Info Field { get; }
  15. public string ObjectName { get; }
  16. public string Scripts { get; }
  17. #endregion Properties
  18. }
  19. }