isn/src/nuget-host/Data/Account/LogoutViewModel.cs
Paul Schneider e4511a8aaa owner id
2021-05-16 14:07:14 +01:00

11 lines
331 B
C#

// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace nuget_host.Data
{
public class LogoutViewModel : LogoutInputModel
{
public bool ShowLogoutPrompt { get; set; } = true;
}
}