Vanara/System/Computer/INamedEntity.cs

9 lines
178 B
C#

namespace Vanara
{
/// <summary>An object that exposes a name.</summary>
public interface INamedEntity
{
/// <summary>Gets the name.</summary>
string Name { get; }
}
}