using System;
public class Test
{
public class Test
{
public string Name {get;set;}
public string Status {get;set;}
}
public class TestSuite
{
public List<Test> TestList {get;set;}
}
public class Report
{
public List<TestSuite> TestSuits {get;set;}
}
public class Model
{
public List<Report> Reports {get;set;}
}
public static void Main()
{
// your code goes here
}
}
prog.cs(5,15): error CS0542: `Test.Test': member names cannot be the same as their enclosing type
prog.cs(3,14): (Location of the symbol related to previous error)
Compilation failed: 1 error(s), 0 warnings