Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive_Milestone3/sources/HeuristicLab.DataAccess.ADOHelper/3.2/ManyToManyRelation.cs @ 4539

Last change on this file since 4539 was 1656, checked in by svonolfe, 15 years ago

Implemented large parts of the security DAL (#597)

File size: 347 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataAccess.Interfaces;
6
7namespace HeuristicLab.DataAccess.ADOHelper {
8  public class ManyToManyRelation: PersistableObject {
9    public Guid Id2 { get; set; }
10
11    public IList<object> AdditionalAttributes { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.