19 lines
337 B
C#
19 lines
337 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 : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
}
|
|
}
|