mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2026-01-25 17:16:11 +00:00
16 lines
255 B
C#
16 lines
255 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IP2RegionMaker.XDB
|
|
{
|
|
public enum IndexPolicy
|
|
{
|
|
VectorIndexPolicy = 1,
|
|
|
|
BTreeIndexPolicy = 2,
|
|
}
|
|
}
|