namespace OliverBooth.Data.Web;
///
/// Represents a code snippet.
///
public interface ICodeSnippet
{
///
/// Gets the content for this snippet.
///
/// The content for this snippet
string Content { get; }
///
/// Gets the ID for this snippet.
///
/// The ID for this snippet
int Id { get; }
///
/// Gets the language for this snippet.
///
/// The language for this snippet
string Language { get; }
}