jellyfin/MediaBrowser.Model/DTO/AuthenticationResult.cs

13 lines
220 B
C#
Raw Normal View History

2012-09-06 18:38:29 +00:00
using System;
using ProtoBuf;
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
public class AuthenticationResult
{
[ProtoMember(1)]
public bool Success { get; set; }
}
}