Ready to beta test

This commit is contained in:
2022-08-26 15:40:05 -07:00
parent 121c0c4d0c
commit b3e643c221
90 changed files with 5023 additions and 20 deletions

31
classlib/Excel.cs Normal file
View File

@ -0,0 +1,31 @@
using System.Text.Json;
using System.Text.Json.Serialization;
namespace Mesa_Backlog.Library;
public class Excel
{
public string Sheet { init; get; }
public string SourceFile { init; get; }
public string TargetFile { init; get; }
[JsonConstructor]
public Excel(
string sheet,
string sourceFile,
string targetFile
)
{
Sheet = sheet;
SourceFile = sourceFile;
TargetFile = targetFile;
}
public override string ToString()
{
string result = JsonSerializer.Serialize(this, new JsonSerializerOptions() { WriteIndented = true });
return result;
}
}