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

13 lines
452 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}";
}
}