Files

21 lines
484 B
C#
Raw Permalink Normal View History

2026-08-27 11:22:57 -06:00
namespace SHARP
{
internal struct CookieFormat
{
internal string Host;
internal string Name;
internal string Path;
internal string Cookie;
internal string Expiry;
internal CookieFormat(string host, string name, string path, string cookie, string expiry)
{
this.Host = host;
this.Name = name;
this.Path = path;
this.Cookie = cookie;
this.Expiry = expiry;
}
}
}