Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BetterIServ/BetterIServ.Backend/Entities/AuthKeys.cs
2023-04-24 18:50:10 +02:00

13 lines
447 B
C#

namespace BetterIServ.Backend.Entities;
public struct AuthKeys {
public string Session { get; set; }
public string Sat { get; set; }
public string AuthSid { get; set; }
public string SatId { get; set; }
public string AuthSession { get; set; }
public string ToCookieString() {
return $"IServSession={Session}; IServSAT={Sat}; IServAuthSID={AuthSid}; IServSATId={SatId}; IServAuthSession={AuthSession}";
}
}