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.

16 lines
432 B

using OpenDBDiff.Abstractions.Schema;
using OpenDBDiff.Abstractions.Schema.Model;
using System.Collections.Generic;
namespace OpenDBDiff.SqlServer.Schema.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; }
}
}