forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFee.cs
70 lines (60 loc) · 1008 Bytes
/
Fee.cs
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
namespace NHibernate.DomainModel
{
[Serializable]
public class Fee
{
public Fee _fee;
public Fee _anotherFee;
public String _fi;
public String _key;
public ISet<string> _fees;
private Qux _qux;
private FooComponent _compon;
private int _count;
public Fee()
{
}
public Fee TheFee
{
get { return _fee; }
set { _fee = value; }
}
public string Fi
{
get { return _fi; }
set { _fi = value; }
}
public string Key
{
get { return _key; }
set { this._key = value; }
}
public ISet<string> Fees
{
get { return _fees; }
set { _fees = value; }
}
public Fee AnotherFee
{
get { return _anotherFee; }
set { _anotherFee = value; }
}
public Qux Qux
{
get { return _qux; }
set { _qux = value; }
}
public FooComponent Compon
{
get { return _compon; }
set { _compon = value; }
}
public int Count
{
get { return _count; }
set { _count = value; }
}
}
}