mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 16:42:57 +00:00
21 lines
453 B
C#
21 lines
453 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class Titan : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Acknowledgment { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string? URL { get; set; }
|
|
|
|
[Parameter]
|
|
public SupporterType Type { get; set; }
|
|
|
|
[Parameter]
|
|
public string? ImageSrc { get; set; }
|
|
} |