Files
2026-01-19 10:29:50 +01:00

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
}
}