mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
26 lines
669 B
C#
26 lines
669 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class ThirdPartyComponent : MSGComponentBase
|
|
{
|
|
[Parameter]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string UseCase { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Developer { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string LicenseName { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string LicenseUrl { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string RepositoryUrl { get; set; } = string.Empty;
|
|
|
|
private string Header => $"{this.Name} ({this.Developer})";
|
|
} |