You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.UnitTests/Models/ChildClass.cs

12 lines
296 B

6 years ago
namespace ZeroMappingTest.Models
{
public class ChildClass:
BaseClass
{
public int Number;
public int Balance { get; set; }
public int ReadOnlyProperty { get { return Number; } }
public int WriteOnlyProperty { set { Number = value; } }
}
}

Powered by TurnKey Linux.