Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,11 @@ public class FEDecoratorAttribute : Attribute
///
/// </summary>
public FeComponentType Type { get; set; }

/// <summary>
/// Property Row number. Used when showing the property in the Action configuration panel.
/// If not set, all properties will be placed on the same default row.
/// </summary>
public int RowId { get; set; } = 0;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Ringhel.Procesio.Action.Core.ActionDecorators
{
/// <summary>
/// Attribute used to set some vital informations for FE
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class FETabDecoratorAttribute : Attribute
{
/// <summary>
/// Tab where properties are found
/// </summary>
public string TabName { get; set; }

/// <summary>
/// Tab order number. It will be used to sort the action's tabs.
/// If not used, All tabs will have the same order value = 0
/// </summary>
public int OrderId { get; set; } = 0;

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Company>Ringhel</Company>
<Product>Procesio</Product>
<RepositoryUrl>https://github.com/PROCESIO/Action-Core.git</RepositoryUrl>
<Version>1.0.3.6</Version>
<Version>1.0.3.8</Version>
<AssemblyName>Ringhel.Procesio.Action.Core</AssemblyName>
<PackageId>Ringhel.Procesio.Action.Core</PackageId>
<RootNamespace>Ringhel.Procesio.Action.Core</RootNamespace>
Expand Down