oliverbooth.dev/OliverBooth/Data/Web/IProgrammingLanguage.cs

21 lines
543 B
C#
Raw Normal View History

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