Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ObjectRelationshipType.cs « System.Data.ObjectSpaces.Schema « System.Data.ObjectSpaces « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b72c0a573f5238f66bf95dda60e0cddccf9f3514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Data.ObjectSpaces.Schema.ObjectRelationshipType.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_2_0

namespace System.Data.ObjectSpaces.Schema {
	public enum ObjectRelationshipType
	{
		OneToMany,
		OneToOne,
		ManyToMany
	}
}

#endif // NET_2_0