2024-05-25 12:10:30 +00:00
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
2024-08-21 06:30:01 +00:00
|
|
|
namespace AIStudio.Components;
|
2024-05-25 12:10:30 +00:00
|
|
|
|
|
|
|
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})";
|
|
|
|
}
|