19 lines
342 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Models.Enums
{
public enum OrderState
{
[Description("日程订单")]
New = 1,
[Description("离散订单")]
Release = 2,
}
}