mirror of https://github.com/abpframework/abp.git
9 changed files with 66 additions and 7 deletions
@ -0,0 +1,23 @@ |
|||
using JetBrains.Annotations; |
|||
|
|||
namespace Volo.Abp.ObjectExtending |
|||
{ |
|||
public class ModuleEntityObjectPropertyExtensionUIConfiguration |
|||
{ |
|||
[NotNull] |
|||
public ModuleEntityObjectPropertyExtensionUITableConfiguration Table { get; } |
|||
|
|||
[NotNull] |
|||
public ModuleEntityObjectPropertyExtensionUIFormConfiguration CreateForm { get; } |
|||
|
|||
[NotNull] |
|||
public ModuleEntityObjectPropertyExtensionUIFormConfiguration EditForm { get; } |
|||
|
|||
public ModuleEntityObjectPropertyExtensionUIConfiguration() |
|||
{ |
|||
Table = new ModuleEntityObjectPropertyExtensionUITableConfiguration(); |
|||
CreateForm = new ModuleEntityObjectPropertyExtensionUIFormConfiguration(); |
|||
EditForm = new ModuleEntityObjectPropertyExtensionUIFormConfiguration(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
namespace Volo.Abp.ObjectExtending |
|||
{ |
|||
public class ModuleEntityObjectPropertyExtensionUIFormConfiguration |
|||
{ |
|||
/// <summary>
|
|||
/// Default: true.
|
|||
/// </summary>
|
|||
public bool IsVisible { get; set; } = true; |
|||
} |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
namespace Volo.Abp.ObjectExtending |
|||
{ |
|||
public class ModuleEntityObjectPropertyExtensionUITableConfiguration |
|||
{ |
|||
/// <summary>
|
|||
/// Default: true.
|
|||
/// </summary>
|
|||
public bool IsVisible { get; set; } = true; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue