mirror of https://github.com/abpframework/abp.git
committed by
GitHub
18 changed files with 164 additions and 26 deletions
@ -0,0 +1,13 @@ |
|||
using System; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending |
|||
{ |
|||
[Serializable] |
|||
public class ExtensionPropertyUiLookupDto |
|||
{ |
|||
public string Url { get; set; } |
|||
public string ResultListPropertyName { get; set; } |
|||
public string DisplayPropertyName { get; set; } |
|||
public string ValuePropertyName { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
namespace Volo.Abp.ObjectExtending.Modularity |
|||
{ |
|||
public class ExtensionPropertyLookupConfiguration |
|||
{ |
|||
public string Url { get; set; } |
|||
public string ResultListPropertyName { get; set; } = "items"; |
|||
public string DisplayPropertyName { get; set; } = "text"; |
|||
public string ValuePropertyName { get; set; } = "id"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue