BotSharp/BotSharp.Algorithm/Features/Feature.cs
2018-09-09 22:56:32 -05:00

19 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Algorithm.Features
{
public class Feature
{
public string Name { get; set; }
public string Value { get; set; }
public Feature(string name, string value)
{
Name = name;
Value = value;
}
}
}