mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-02-02 14:27:34 +00:00
18 lines
426 B
C#
18 lines
426 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
|
|
}
|