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.

31 lines
744 B

using System;
using OpenDBDiff.Schema.Model;
namespace OpenDBDiff.Schema.SQLServer.Generates.Model
{
public abstract class CLRCode : Code
{
public CLRCode(ISchemaBase parent, ObjectType type, ScriptAction addAction, ScriptAction dropAction)
: base(parent, type, addAction, dropAction)
{
}
public string AssemblyMethod { get; set; }
public string AssemblyExecuteAs { get; set; }
public string AssemblyName { get; set; }
public Boolean IsAssembly { get; set; }
public string AssemblyClass { get; set; }
public int AssemblyId { get; set; }
public override Boolean IsCodeType
{
get { return true; }
}
}
}