mirror of
https://github.com/TechplexEngineer/plexview.git
synced 2026-07-27 22:15:37 +00:00
14 lines
154 B
C#
14 lines
154 B
C#
using System;
|
|
|
|
namespace PlexView
|
|
{
|
|
/// <summary>
|
|
/// Logout model.
|
|
/// </summary>
|
|
public class Logout
|
|
{
|
|
public Guid sessionID { get; set; }
|
|
}
|
|
}
|
|
|