2024-05-05 02:18:20 +01:00
|
|
|
using OliverBooth.Common.Data.Web;
|
|
|
|
|
2024-04-27 00:25:32 +01:00
|
|
|
namespace OliverBooth.Data.Web;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
internal sealed class CodeSnippet : ICodeSnippet
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Content { get; } = string.Empty;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public int Id { get; }
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Language { get; } = string.Empty;
|
|
|
|
}
|