19 lines
366 B
C#
19 lines
366 B
C#
using Microsoft.AspNetCore.Components;
|
|
using WebWindowTest.Models;
|
|
|
|
namespace WebWindowTest.Compo
|
|
{
|
|
public partial class EditJoint
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Joint corrente
|
|
/// </summary>
|
|
[Parameter]
|
|
public Joint CurrRec { get; set; } = null!;
|
|
|
|
#endregion Public Properties
|
|
|
|
}
|
|
} |