Skip to content
Snippets Groups Projects
identity.ts 240 B
import {Computesite} from './computesite';
// Identities are defined by a username on a computer, but rather than just 
// DNS entry, there is extra info in the Computesite
export class Identity {
  username: string;
  site: Computesite;
}