Files
Disco/Disco.Models/ClientServices/ServiceBase.cs
T
2013-02-01 12:35:28 +11:00

17 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Disco.Models.ClientServices
{
public abstract class ServiceBase<ResponseType>
{
internal ServiceBase()
{
}
public abstract string Feature { get; }
}
}