Project initial upload

This commit is contained in:
NinjaPug
2025-03-28 11:31:30 -04:00
parent 9d80c6a125
commit 553849d67f
24 changed files with 6585 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
namespace PCPalConfigurator
{
public class ConfigData
{
public string LastUsedPort { get; set; }
public string ScreenType { get; set; }
public string Line1Selection { get; set; }
public string Line1CustomText { get; set; }
public string Line2Selection { get; set; }
public string Line2CustomText { get; set; }
public string Line1PostText { get; set; }
public string Line2PostText { get; set; }
}
}