aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/DiscourseUser.cs
blob: d91b2e34bb21b3bf61d7fcd2318df97e2227d04d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Discoursistency.HTTP.Client;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Discoursistency.HTTP.Client.Models;

namespace ShiftOS.Objects
{
    public class ShiftOSAuthAgent : Discoursistency.Base.Authentication.DiscourseAuthenticationService
    {
        public ShiftOSAuthAgent(IClient client) : base(client)
        {
        }
    }

}