using Newtonsoft.Json; namespace TMDbLib.Objects.Authentication { /// /// Session object that can be retrieved after the user has correctly authenticated himself on the TMDb site. (using the referal url from the token provided previously) /// public class UserSession { [JsonProperty("session_id")] public string SessionId { get; set; } [JsonProperty("success")] public bool Success { get; set; } } }