Files
MTSC/MTSC.UnitTests/StringResource.cs
Alexandru Macocian 247f1b27e7 Renamed namespace for easier access
Added tests for stopping the server properly
2020-03-06 11:07:47 +01:00

10 lines
164 B
C#

using MTSC.ServerSide.Resources;
namespace MTSC.UnitTests
{
public class StringResource : IResource
{
public string Value { get; set; }
}
}