You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
575 B
17 lines
575 B
using OpenDBDiff.Abstractions.Schema;
|
|
using OpenDBDiff.Abstractions.Schema.Model;
|
|
|
|
namespace OpenDBDiff.SqlServer.Schema.Model
|
|
{
|
|
public abstract class SQLServerSchemaBase : SchemaBase, ISQLServerSchemaBase
|
|
{
|
|
protected SQLServerSchemaBase(ISchemaBase parent, ObjectType objectType) : base("[", "]", objectType)
|
|
{
|
|
this.Parent = parent;
|
|
ExtendedProperties = new SchemaList<ExtendedProperty, ISchemaBase>(parent);
|
|
}
|
|
|
|
public SchemaList<ExtendedProperty, ISchemaBase> ExtendedProperties { get; private set; }
|
|
}
|
|
}
|