Mirror.Length
This commit is contained in:
17
Mirror-Length/Models/AppSettings.cs
Normal file
17
Mirror-Length/Models/AppSettings.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace View_by_Distance.Mirror.Length.Models;
|
||||
|
||||
public record AppSettings(string Company,
|
||||
char Destination,
|
||||
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