mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
9 lines
183 B
C#
9 lines
183 B
C#
namespace Teknik.IdentityServer.Models
|
|
{
|
|
public class LogoutInputModel
|
|
{
|
|
public string LogoutId { get; set; }
|
|
public string ReturnURL { get; set; }
|
|
}
|
|
}
|