mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 10:02:56 +00:00
8 lines
313 B
C#
8 lines
313 B
C#
using System.Net.Http.Headers;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public readonly record struct EnterpriseEnvironment(string ConfigurationServerUrl, Guid ConfigurationId, EntityTagHeaderValue? ETag)
|
|
{
|
|
public bool IsActive => !string.IsNullOrEmpty(this.ConfigurationServerUrl) && this.ConfigurationId != Guid.Empty;
|
|
} |