用枚举吧
public enum YourState
{
  Login,Logout,...
}调用方式
YourState ts = YourState.Login;