mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 18:56:27 +00:00
20 lines
443 B
C#
20 lines
443 B
C#
using AIStudio.Settings.DataModel;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class MandatoryInfoDisplay
|
|
{
|
|
[Parameter]
|
|
public DataMandatoryInfo Info { get; set; } = new();
|
|
|
|
[Parameter]
|
|
public DataMandatoryInfoAcceptance? Acceptance { get; set; }
|
|
|
|
[Parameter]
|
|
public bool ShowTitle { get; set; } = true;
|
|
|
|
[Parameter]
|
|
public bool ShowAcceptanceMetadata { get; set; }
|
|
} |