12 lines
209 B
C#
12 lines
209 B
C#
namespace Disco.Models.ClientServices
|
|
{
|
|
public abstract class ServiceBase<ResponseType>
|
|
{
|
|
internal ServiceBase()
|
|
{
|
|
}
|
|
|
|
public abstract string Feature { get; }
|
|
}
|
|
}
|