Drag-Drop-Set-Property-Item
This commit is contained in:
18
Drag-Drop-Set-Property-Item/Models/AppSettings.cs
Normal file
18
Drag-Drop-Set-Property-Item/Models/AppSettings.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace View_by_Distance.Drag.Drop.Set.Item.Models;
|
||||
|
||||
public record AppSettings(string Company,
|
||||
string[] IgnoreRulesKeyWords,
|
||||
int MaxDegreeOfParallelism,
|
||||
string[] ValidKeyWords,
|
||||
string WorkingDirectoryName)
|
||||
{
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
string result = JsonSerializer.Serialize(this, new JsonSerializerOptions() { WriteIndented = true });
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user