namespace InABox.Core { public class DFLayoutTextFieldProperties : DFLayoutFieldProperties { public override string FormatValue(string value) { return value; } public override string DeserializeValue(DFLoadStorageEntry entry) { return entry.GetValue() ?? ""; } public override void SerializeValue(DFSaveStorageEntry entry, string value) { entry.SetValue(value); } public override string GetValue(string value) { return value; } } }