AI-Studio/app/MindWork AI Studio/Tools/EnterpriseEnvironment.cs

8 lines
313 B
C#
Raw Normal View History

2025-06-02 18:08:25 +00:00
using System.Net.Http.Headers;
namespace AIStudio.Tools;
2025-06-02 18:08:25 +00:00
public readonly record struct EnterpriseEnvironment(string ConfigurationServerUrl, Guid ConfigurationId, EntityTagHeaderValue? ETag)
{
public bool IsActive => !string.IsNullOrEmpty(this.ConfigurationServerUrl) && this.ConfigurationId != Guid.Empty;
}