Files

13 lines
186 B
C#
Raw Permalink Normal View History

2021-10-11 21:50:50 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Yi.Framework.Common.Enum
{
public enum AgrFlagEnum
{
wait = 0,
Agree = 1
}
}