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