123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SinochemInternetPlusApp
- {
- public enum NotifyPosFlag
- {
- Unknown = 0,
- NotifyOk = 1,
- NotifyFailed = 2,
- }
- }
|