| 1234567891011121314151617181920 | 
							- using System;
 
- namespace InABox.Core
 
- {
 
-     public enum DeleteAction
 
-     {
 
-         Cascade,
 
-         SetNull
 
-     }
 
-     public class EntityRelationshipAttribute : Attribute
 
-     {
 
-         public EntityRelationshipAttribute(DeleteAction action)
 
-         {
 
-             Action = action;
 
-         }
 
-         public DeleteAction Action { get; set; }
 
-     }
 
- }
 
 
  |