17 lines
420 B
C#
17 lines
420 B
C#
using System.Text.Json;
|
|
|
|
namespace View_by_Distance.PrepareForOld.Models.Binder;
|
|
|
|
public class Configuration
|
|
{
|
|
|
|
public Property.Models.Configuration? PropertyConfiguration { get; set; }
|
|
public string[]? Spelling { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
string result = JsonSerializer.Serialize(this, new JsonSerializerOptions() { WriteIndented = true });
|
|
return result;
|
|
}
|
|
|
|
} |