unit tests
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user