2026-04-09 12:01:41 +00:00
|
|
|
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;
|
|
|
|
|
|
2026-04-10 14:31:13 +00:00
|
|
|
/// <summary>
|
|
|
|
|
/// The accepted hash of the mandatory info content.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AcceptedHash { get; init; } = string.Empty;
|
|
|
|
|
|
2026-04-09 12:01:41 +00:00
|
|
|
/// <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;
|
|
|
|
|
}
|