/*
* Namespace Summary
* Copyright (C) 2005+ Bogdan Damian Constantin
* E-Mail: damianbcpetro@gmail.com
* WEB: http://www.sourceforge.net/projects/dataholder
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License 2.1 or later, as
* published by the Free Software Foundation. See the included License.txt
* or http://www.gnu.org/copyleft/lesser.html for details.
*
*/
using System;
namespace DataHolder.Interfaces{
/// <summary>
/// Summary description for IDBGenericProperty.
/// </summary>
public interface IDBGenericProperty
{
object PropertyDefaultValue
{
get;
set;
}
bool Mandatory
{
get;
set;
}
}
}
|