UNPKG

@chustasoft/cs-common

Version:

Common utilities for JavaScript projects equivalents to ChustaSoft CommonNET project

11 lines (10 loc) 308 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BasicAuthentication = void 0; class BasicAuthentication { constructor(username, password) { this.username = username; this.password = password; } } exports.BasicAuthentication = BasicAuthentication;