Files
mongodb-generic-repository/IntegrationTests/Infrastructure/Child.cs
T
2017-10-01 22:30:30 +00:00

15 lines
288 B
C#

namespace IntegrationTests.Infrastructure
{
public class Child
{
public Child(string type, string value)
{
Type = type;
Value = value;
}
public string Type { get; set; }
public string Value { get; set; }
}
}