16 lines
415 B
C#
16 lines
415 B
C#
using System.Text.Json;
|
|
|
|
namespace View_by_Distance.Drag.Drop.Move.Models;
|
|
|
|
public record AppSettings(string Company,
|
|
int MaxDegreeOfParallelism,
|
|
string WorkingDirectoryName)
|
|
{
|
|
|
|
public override string ToString()
|
|
{
|
|
string result = JsonSerializer.Serialize(this, new JsonSerializerOptions() { WriteIndented = true });
|
|
return result;
|
|
}
|
|
|
|
} |