12 lines
208 B
C#
12 lines
208 B
C#
namespace Disco.Models.ClientServices
|
|
{
|
|
public class WhoAmI : ServiceBase<WhoAmIResponse>
|
|
{
|
|
|
|
public override string Feature
|
|
{
|
|
get { return "WhoAmI"; }
|
|
}
|
|
}
|
|
}
|