13 lines
340 B
C#
13 lines
340 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Core.Persistence.DatabaseModelDefinitions
|
|||
|
|
{
|
|||
|
|
internal static class DefinitionFactory
|
|||
|
|
{
|
|||
|
|
public static TableDefinition GetTableDefinition(Type modelType)
|
|||
|
|
{
|
|||
|
|
var tableDefinition = new TableDefinition();
|
|||
|
|
return tableDefinition;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|