12 lines
231 B
C#
12 lines
231 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace BlueWest.Data
|
|||
|
{
|
|||
|
public class DataObject
|
|||
|
{
|
|||
|
public override string ToString()
|
|||
|
{
|
|||
|
return JsonConvert.SerializeObject(this, Formatting.Indented);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|