using System;
using System.Collections.Generic;
using System.Text;
namespace InABox.Core
{
///
/// Indicates that this property is one that should, if necessary, be stored externally; for example, it may be a BLOB-type data, and would
/// thus be not suitable for database storage; perhaps it should be a file.
///
///
/// The exact implementation of this property is specific to the SQL provider; it may not do anything.
///
/// Any property marked with should be a .
///
[AttributeUsage(AttributeTargets.Property)]
public class ExternalStorageAttribute : Attribute
{
}
}