Files
Sean Garrett 54e756c695 unit tests
2023-06-15 21:56:47 +01:00

13 lines
245 B
C#

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