mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-14 16:41:37 +00:00
9 lines
190 B
C#
9 lines
190 B
C#
|
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Components;
|
|||
|
|
|
|||
|
|
public partial class MudJustifiedMarkdown
|
|||
|
|
{
|
|||
|
|
[Parameter]
|
|||
|
|
public string Value { get; set; } = string.Empty;
|
|||
|
|
}
|