TourIAm/TIAMSharedUI/Pages/Components/AuctionComponent.cs

18 lines
320 B
C#

using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TIAMSharedUI.Pages.Components
{
public partial class AuctionComponent
{
[Parameter]
public Guid UserId { get; set; }
}
}