2024-05-05 02:18:20 +01:00
|
|
|
namespace OliverBooth.Common.Data.Web;
|
2024-04-27 00:25:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents a code snippet.
|
|
|
|
/// </summary>
|
|
|
|
public interface ICodeSnippet
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the content for this snippet.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The content for this snippet</value>
|
|
|
|
string Content { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the ID for this snippet.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The ID for this snippet</value>
|
|
|
|
int Id { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the language for this snippet.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The language for this snippet</value>
|
|
|
|
string Language { get; }
|
|
|
|
}
|