Skip to content

Commit 1d9bb84

Browse files
authored
fix not permitted parameter type (#117)
1 parent 2d4a691 commit 1d9bb84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Ringhel.Procesio.Action.Core/ActionDecorators/FEDecoratorAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ public class FEDecoratorAttribute : Attribute
5555
/// Properties with the same RowId will be ordered by their ColumnId value.
5656
/// If not set, properties will be displayed on different rows.
5757
/// </summary>
58-
public int? ColumnId { get; set; }
58+
public int ColumnId { get; set; } = 0;
5959

6060
/// <summary>
6161
/// Property Column size. Used when displaying more than one property on the same row.
6262
/// Uses a 12-column grid system where the sum of all ColumnSize values on the same row should equal 12.
6363
/// For example: two properties can use sizes 3 and 9, or 6 and 6, or 4 and 8, etc.
6464
/// If not set, properties sharing the same row will be split equally.
6565
/// </summary>
66-
public int? ColumnSize { get; set; }
66+
public int ColumnSize { get; set; } = 0;
6767

6868
/// <summary>
6969
/// Tooltip property.

0 commit comments

Comments
 (0)