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

12 lines
302 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 LogoutInputModel
{
public string LogoutId { get; set; }
}
}