14 lines
333 B
C#
14 lines
333 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace MP_TAB_SERV.Components
|
|
{
|
|
public partial class ProdStopMan
|
|
{
|
|
[Parameter]
|
|
public string objCss { get; set; } = "";
|
|
[Parameter]
|
|
public string objIcon { get; set; } = "";
|
|
[Parameter]
|
|
public string objTxt { get; set; } = "";
|
|
}
|
|
} |