using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Core.Enums
{
///
/// PCS远程本地状态
///
public enum PcsRemoteLocation
{
///
/// 远程
///
Remote = 1,
///
/// 本地
///
Location = 2,
}
}