using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core.Models.ElectronSignServer.PersonalUserReals
{
///
/// 电子签-用户类型(10企业 20个人)
///
public enum EnumElectronSignUserType
{
///
/// 企业
///
[Description("企业")]
Company = 10,
///
/// 个人
///
[Description("个人")]
Personal = 20
}
}