mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:49:06 +00:00
9 lines
204 B
C#
9 lines
204 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Components.Blocks;
|
||
|
|
||
|
public partial class Issues : ComponentBase
|
||
|
{
|
||
|
[Parameter]
|
||
|
public IEnumerable<string> IssuesData { get; set; } = [];
|
||
|
}
|