pschelpdesk/Vendor/Prise.Tests.Integration/Prise.IntegrationTestsContract/IPluginWithSerializer.cs
2024-11-04 20:45:34 +01:00

15 lines
353 B
C#

namespace Prise.IntegrationTestsContract
{
public class ObjectToSerialize
{
public string StringProperty { get; set; }
public int IntProperty { get; set; }
public double DoubleProperty { get; set; }
}
public interface IPluginWithSerializer
{
string SerializeObject(ObjectToSerialize obj);
}
}