Metadata-Query
This commit is contained in:
16
Metadata-Query/Models/AppSettings.cs
Normal file
16
Metadata-Query/Models/AppSettings.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace View_by_Distance.Metadata.Query.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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user