using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RobotLib.Status { public class PresentEventArgs { public int Present { get; } public PresentEventArgs(int presentCount) { Present = presentCount; } } }