DFLayoutTextFieldProperties.cs 356 B

123456789101112131415
  1. namespace InABox.Core
  2. {
  3. public class DFLayoutTextFieldProperties : DFLayoutFieldProperties<string>
  4. {
  5. public override string FormatValue(object value)
  6. {
  7. return value?.ToString() ?? "";
  8. }
  9. public override object? ParseValue(object value)
  10. {
  11. return value?.ToString();
  12. }
  13. }
  14. }