yavsc/Yavsc.Server/Interfaces/INamedObject.cs

7 lines
119 B
C#
Raw Normal View History

2018-05-04 13:22:49 +02:00
namespace Yavsc.Server.Interfaces
{
public interface INamedObject
{
string Name { get; set; }
}
}