mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-20 11:01:37 +00:00
9 lines
290 B
C#
9 lines
290 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class ConfigInfoRow : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public ConfigInfoRowItem Item { get; set; } = new(Icons.Material.Filled.ArrowRightAlt, string.Empty, string.Empty, string.Empty, string.Empty);
|
|
} |