bovender framework
C# framework that implements MVVM and more
TestModel.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace Bovender.UnitTests.Mvvm
7 {
8  class TestModel
9  {
10  public string Value { get; set; }
11 
12  public TestModel() { }
13 
14  public TestModel(string value)
15  : this()
16  {
17  Value = value;
18  }
19  }
20 }