14 lines
430 B
C#
14 lines
430 B
C#
namespace DBMigration.Models
|
|
{
|
|
public class DatabaseObject
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Schema { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public bool IsSelected { get; set; }
|
|
public string Definition { get; set; } = string.Empty;
|
|
|
|
public string FullName => $"[{Schema}].[{Name}]";
|
|
}
|
|
}
|