fdd2930df6
Add skipautoprops feature
16 lines
323 B
C#
16 lines
323 B
C#
using System;
|
|
|
|
namespace Coverlet.Core.Samples.Tests
|
|
{
|
|
public class AutoProps
|
|
{
|
|
private int _myVal = 0;
|
|
public AutoProps()
|
|
{
|
|
_myVal = new Random().Next();
|
|
}
|
|
public int AutoPropsNonInit { get; set; }
|
|
public int AutoPropsInit { get; set; } = 10;
|
|
}
|
|
}
|