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

17 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Disco.Models.ClientServices
{
public class WhoAmI : ServiceBase<WhoAmIResponse>
{
public override string Feature
{
get { return "WhoAmI"; }
}
}
}