using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyCode.Core.Enums
{
public enum TrackingState : byte
None = 0,
Get = 1,
GetAll = 2,
Add = 3,
Update = 4,
Remove = 5,
}