20 lines
476 B
C#
20 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.AspNet.JsonPatch.Test
|
|
{
|
|
public class SimpleDTO
|
|
{
|
|
public List<int> IntegerList { get; set; }
|
|
public int IntegerValue { get; set; }
|
|
public string StringProperty { get; set; }
|
|
public string AnotherStringProperty { get; set; }
|
|
public decimal DecimalValue { get; set; }
|
|
|
|
public double DoubleValue { get; set; }
|
|
|
|
public float FloatValue { get; set; }
|
|
|
|
public Guid GuidValue { get; set; }
|
|
}
|
|
} |