wcs_server_kate_suzhou/WcsMain/Enum/General/TrueFalseEnum.cs

11 lines
166 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace WcsMain.Enum.General;
/// <summary>
/// 通用枚举0 1表示true or false
/// </summary>
public enum TrueFalseEnum
{
FALSE = 0,
TRUE = 1,
}