mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 17:16:28 +00:00
17 lines
378 B
C#
17 lines
378 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 ShowAcceptanceMetadata { get; set; }
|
|
} |