You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
478 B
22 lines
478 B
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages;
|
|
using Volo.Abp.Users;
|
|
|
|
namespace CompanyName.ProjectName.Pages
|
|
{
|
|
[Authorize]
|
|
public class Welcome : AbpPageModel
|
|
{
|
|
private readonly ICurrentUser _currentUser;
|
|
|
|
public Welcome(ICurrentUser currentUser)
|
|
{
|
|
_currentUser = currentUser;
|
|
}
|
|
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|
|
}
|