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.

15 lines
391 B

using System.Collections.Generic;
using OpenDBDiff.Schema.Model;
namespace OpenDBDiff.Schema.SQLServer.Generates.Model
{
public interface ICode : ISchemaBase
{
SQLScriptList Rebuild();
List<string> DependenciesIn { get; set; }
List<string> DependenciesOut { get; set; }
bool IsSchemaBinding { get; set; }
string Text { get; set; }
}
}