Files
yavsc/Yavsc.Server/Interfaces/INamedObject.cs
2018-05-04 13:22:49 +02:00

7 lines
119 B
C#

namespace Yavsc.Server.Interfaces
{
public interface INamedObject
{
string Name { get; set; }
}
}