using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Enum
{
public enum CandidateEnum
{
///
/// 请求合作
///
[Description("请求合作")] REQUEST = 0,
///
/// 同意合作
///
[Description("同意合作")] AGREE = 1,
///
/// 解除合作
///
[Description("解除合作")] SECURE = 2,
}
}