namespace EventPartnerGather { public enum AutoMatchState { AutoMatchOff, AutoMatchOn, } public class EventForAutoMatchChangeStage { public AutoMatchState State; } public class EventAutoMatchFailed { public string Reason; } public class EventTryCloseAutoMatch { } public class EventTryCloseAutoMatchResult { public bool IsCanClose; } }