Baz.cs
22 lines
| 383 B
| text/x-csharp
|
CSharpLexer
|
|
r289 | using System; | |
| using System.Collections.Generic; | |||
| namespace Implab.ServiceHost.Test.Mock { | |||
| public class Baz { | |||
| public Guid Id { | |||
| get; set; | |||
| } | |||
| public int[] Numbers { | |||
| get; set; | |||
| } | |||
| public Nut[] Nuts { | |||
| get; set; | |||
| } | |||
| public class Nut { | |||
| public int Size { get; set; } | |||
| } | |||
| } | |||
| } |
