10 lines
227 B
C#
10 lines
227 B
C#
|
using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
|
|||
|
|
|||
|
namespace BlazingPizza.Client
|
|||
|
{
|
|||
|
public class PizzaAuthenticationState : RemoteAuthenticationState
|
|||
|
{
|
|||
|
public Order Order { get; set; }
|
|||
|
}
|
|||
|
}
|