forked from MapsterMapper/Mapster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoo.cs
More file actions
29 lines (18 loc) · 618 Bytes
/
Foo.cs
File metadata and controls
29 lines (18 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace Mapster.Benchmark.Development.Classes
{
public class Foo
{
public string Name { get; set; }
public int Int32 { get; set; }
public long Int64 { set; get; }
public int? NullInt { get; set; }
public float Floatn { get; set; }
public double Doublen { get; set; }
public DateTime DateTime { get; set; }
public Foo Foo1 { get; set; }
public IEnumerable<Foo> Foos { get; set; }
public Foo[] FooArr { get; set; }
public int[] IntArr { get; set; }
public IEnumerable<int> Ints { get; set; }
}
}