lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

20 lines
338 B
C#

using System.Text;
namespace Shared.Models.Templates
{
public interface ITplResult
{
public bool IsEmpty { get; }
public int Length { get; }
public string ToHtml();
public StringBuilder ToBuilderHtml();
public string ToJson();
public StringBuilder ToBuilderJson();
}
}