BotSharp/BotSharp.Algorithm/Features/Feature.cs

19 lines
356 B
C#
Raw Normal View History

2018-09-10 03:56:32 +00:00
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;
}
}
}