Files
ENIGProtocol/sample/Settings.cs
2025-04-23 09:57:01 +09:00

26 lines
605 B
C#

using AR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SampleProject
{
public class Settings : AR.Setting
{
public string LastPort { get; set; }
public string LastBaud { get; set; }
public override void AfterLoad()
{
// throw new NotImplementedException();
if (LastBaud.isEmpty()) LastBaud = "9600";
}
public override void AfterSave()
{
// throw new NotImplementedException();
}
}
}