forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOne.cs
48 lines (42 loc) · 694 Bytes
/
One.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
using System;
using System.Collections.Generic;
namespace NHibernate.DomainModel
{
/// <summary>
/// Summary description for One.
/// </summary>
public class One
{
private long _key;
private string _value;
// <set> mapping
private ISet<Many> _manies;
private int _x;
private int _v;
public long Key
{
get { return _key; }
set { _key = value; }
}
public string Value
{
get { return _value; }
set { _value = value; }
}
public ISet<Many> Manies
{
get { return _manies; }
set { _manies = value; }
}
public int X
{
get { return _x; }
set { _x = value; }
}
public int V
{
get { return _v; }
set { _v = value; }
}
}
}