namespace Disco.Models.ClientServices { public abstract class ServiceBase { internal ServiceBase() { } public abstract string Feature { get; } } }