using System; namespace LANCommander.SDK.Extensions; public static class GuidExtensions { public static bool IsNullOrEmpty(this Guid guid) { return guid == null || guid == Guid.Empty; } }