PlanTempusApp/PlanTempus.Application/Features/Customers/Pages/Detail.cshtml.cs

15 lines
304 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.Customers.Pages;
public class DetailModel : PageModel
{
[BindProperty(SupportsGet = true)]
public string Id { get; set; } = string.Empty;
public void OnGet()
{
}
}