|
|
|
@ -13,9 +13,9 @@ public class LayoutHookInfo |
|
|
|
/// Specifies the layout name to apply this hook.
|
|
|
|
/// null indicates that this hook will be applied to all layouts.
|
|
|
|
/// </summary>
|
|
|
|
public string Layout { get; } |
|
|
|
public string? Layout { get; } |
|
|
|
|
|
|
|
public LayoutHookInfo(Type componentType, string layout = null) |
|
|
|
public LayoutHookInfo(Type componentType, string? layout = null) |
|
|
|
{ |
|
|
|
ComponentType = componentType; |
|
|
|
Layout = layout; |
|
|
|
|