using System;
using System.ComponentModel;
namespace BotSharp.Algorithm.Bayesian
{
///
/// Interface IClass
///
public interface IClass : IEquatable
{
///
/// Gets the name.
///
/// The name.
string Name { get; }
///
/// Gets or sets the class' base probability.
///
/// The probability.
[DefaultValue(1)]
double Probability { get; set; }
}
}