using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.NERs
{
///
/// Ontology encompasses a representation, formal naming, and definition of the categories, properties, and relations between the concepts, data, and entities that substantiate one, many, or all domains.
///
public enum OntologyEnum
{
///
/// 6 miles
///
Distance = 1,
///
/// 3 mins
///
Duration = 2,
///
/// team@botsharp.com
///
Email = 3,
///
/// eighty eight
///
Numeral = 4,
///
/// 33rd
///
Ordinal = 5,
///
/// +1 (312) 292-6741
///
PhoneNumber = 6,
///
/// 3 cups of sugar
///
Quantity = 7,
///
/// 80F
///
Temperature = 8,
///
/// today at 9am
///
DateTime = 9,
///
/// https://github.com/Oceania2018/BotSharp
///
Url = 10,
///
/// 4 gallons
///
Volume = 11,
///
/// Chicago
///
Location = 12
}
}