using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 空闲时间 /// public enum EnumPersonalFreeTime { /// /// 不限 /// NoLimit = 10, /// /// 寒暑假 /// WinterSummerVacations = 20, /// /// 节假日 /// FestivalAndHoliday = 30, /// /// 周六日 /// Weekend = 40, /// /// 工作日 /// Weekday = 50 } }