You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
474 B
C#
26 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUCMA.STORE.Entity.Enums
|
|
{
|
|
public enum LocationArea
|
|
{
|
|
/// <summary>
|
|
/// 不区分左右
|
|
/// </summary>
|
|
Location_NoCare,
|
|
/// <summary>
|
|
/// 左边
|
|
/// </summary>
|
|
Location_Left,
|
|
|
|
/// <summary>
|
|
/// 右边
|
|
/// </summary>
|
|
Location_Right,
|
|
}
|
|
}
|