Vanara/System/Computer/INamedEntity.cs

9 lines
178 B
C#
Raw Normal View History

namespace Vanara
{
/// <summary>An object that exposes a name.</summary>
public interface INamedEntity
{
2020-03-01 20:59:39 -05:00
/// <summary>Gets the name.</summary>
string Name { get; }
}
}