using OliverBooth.Common.Data.Web; namespace OliverBooth.Data.Web; /// internal sealed class CodeSnippet : ICodeSnippet { /// public string Content { get; } = string.Empty; /// public int Id { get; } /// public string Language { get; } = string.Empty; }