namespace OliverBooth.Data.Web;
///
/// Represents a programming language.
///
public interface IProgrammingLanguage
{
///
/// Gets the unique key for this programming language.
///
/// The unique key.
/// This is generally the file extension of the language.
string Key { get; }
///
/// Gets the name of this programming language.
///
/// The name.
string Name { get; }
}