AI-Studio/app/MindWork AI Studio/Components/Blocks/ThirdPartyComponent.razor.cs

26 lines
673 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Components;
namespace AIStudio.Components.Blocks;
public partial class ThirdPartyComponent : ComponentBase
{
[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})";
}