import Configurable from '../configurable'; import Subjects from '../Subjects'; // Static class class ServerInformation { static create(url: string, code: string, name: string, subjects: T): Configurable.ServerInformation { return { Url: url, Code: code, Name: name, Subjects: subjects }; } } export default ServerInformation;