Ikagaka/ghost-kernel.js

View on GitHub
lib/components/ShioriVersionInfo.ts

Summary

Maintainability
A
40 mins
Test Coverage
export class ShioriVersionInfo {
  name: string;
  version: string;
  craftman: string;
  craftmanw: string;

  constructor(name: string, version: string, craftman: string, craftmanw: string) {
    this.name = name;
    this.version = version;
    this.craftman = craftman;
    this.craftmanw = craftmanw;
  }
}