// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Workflows; /// /// A tag interface for objects that have a unique identifier within an appropriate namespace. /// public interface IIdentified { /// /// The unique identifier. /// string Id { get; } }