mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 12:19:48 +00:00
15 lines
338 B
C#
15 lines
338 B
C#
|
using AIStudio.Settings.DataModel;
|
||
|
|
||
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
// ReSharper disable InconsistentNaming
|
||
|
namespace AIStudio.Dialogs;
|
||
|
|
||
|
public partial class DataSourceERI_V1Dialog : ComponentBase
|
||
|
{
|
||
|
[Parameter]
|
||
|
public bool IsEditing { get; set; }
|
||
|
|
||
|
[Parameter]
|
||
|
public DataSourceERI_V1 DataSource { get; set; }
|
||
|
}
|