DFLayoutTextFieldProperties.cs 617 B

12345678910111213141516171819202122232425
  1. namespace InABox.Core
  2. {
  3. public class DFLayoutTextFieldProperties : DFLayoutFieldProperties<string, string>
  4. {
  5. public override string FormatValue(string value)
  6. {
  7. return value;
  8. }
  9. public override string DeserializeValue(DFLoadStorageEntry entry)
  10. {
  11. return entry.GetValue<string>() ?? "";
  12. }
  13. public override void SerializeValue(DFSaveStorageEntry entry, string value)
  14. {
  15. entry.SetValue(value);
  16. }
  17. public override string GetValue(string value)
  18. {
  19. return value;
  20. }
  21. }
  22. }