mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-14 16:41:37 +00:00
29 lines
864 B
C#
29 lines
864 B
C#
|
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
|
||
|
|
public sealed record DataMandatoryInfoAcceptance
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The ID of the mandatory info that was accepted.
|
||
|
|
/// </summary>
|
||
|
|
public string InfoId { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The accepted version string.
|
||
|
|
/// </summary>
|
||
|
|
public string AcceptedVersion { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The accepted hash of the mandatory info content.
|
||
|
|
/// </summary>
|
||
|
|
public string AcceptedHash { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The UTC time of the acceptance.
|
||
|
|
/// </summary>
|
||
|
|
public DateTimeOffset AcceptedAtUtc { get; init; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The plugin that provided the accepted info at the time of acceptance.
|
||
|
|
/// </summary>
|
||
|
|
public Guid EnterpriseConfigurationPluginId { get; init; } = Guid.Empty;
|
||
|
|
}
|