#region License // Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved. // This source code is made available under the terms of the GNU Lesser General Public License v3.0 // https://github.com/paulkohler/minisqlquery/blob/master/LICENSE #endregion namespace MiniSqlQuery.Core.DbModel { /// The db model constraint. public class DbModelConstraint { /// Gets or sets ColumnName. /// The column name. public string ColumnName { get; set; } /// Gets or sets ConstraintName. /// The constraint name. public string ConstraintName { get; set; } /// Gets or sets ConstraintTableName. /// The constraint table name. public string ConstraintTableName { get; set; } /// Gets or sets ConstraintTableSchema. /// The constraint table schema. public string ConstraintTableSchema { get; set; } /// Gets or sets DeleteRule. /// The delete rule. public string DeleteRule { get; set; } /// Gets or sets UniqueColumnName. /// The unique column name. public string UniqueColumnName { get; set; } /// Gets or sets UniqueConstraintName. /// The unique constraint name. public string UniqueConstraintName { get; set; } /// Gets or sets UniqueConstraintTableName. /// The unique constraint table name. public string UniqueConstraintTableName { get; set; } /// Gets or sets UniqueConstraintTableSchema. /// The unique constraint table schema. public string UniqueConstraintTableSchema { get; set; } /// Gets or sets UpdateRule. /// The update rule. public string UpdateRule { get; set; } } }