Lidarr/NzbDrone.Core/DataAugmentation/Xem/Model/XemResult.cs

10 lines
223 B
C#
Raw Normal View History

2013-09-19 01:09:26 +00:00
namespace NzbDrone.Core.DataAugmentation.Xem.Model
2012-10-17 05:00:28 +00:00
{
public class XemResult<T>
{
public string Result { get; set; }
public T Data { get; set; }
public string Message { get; set; }
}
}