Files
ENIG/AGVLogic/EnigProtocol/sample/Settings.cs
ChiKyun Kim 58ca67150d 파일정리
2026-01-29 14:03:17 +09:00

26 lines
580 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();
}
}
}