jellyfin/MediaBrowser.Model/DTO/AuthenticationResult.cs
LukePulverenti Luke Pulverenti luke pulverenti 3538789e46 Added User authentication
2012-09-06 14:38:29 -04:00

13 lines
220 B
C#

using System;
using ProtoBuf;
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}