Properly using Xem now

This commit is contained in:
Mark McDowall 2012-10-16 22:00:28 -07:00
commit c9c967fa1d
15 changed files with 438 additions and 1 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model.Xem
{
public class XemResult<T>
{
public string Result { get; set; }
public T Data { get; set; }
public string Message { get; set; }
}
}