bitwarden-estensione-browser/src/models/view/cardView.ts

17 lines
293 B
TypeScript
Raw Normal View History

2018-01-24 17:33:15 +01:00
import { View } from './view';
import { Card } from '../domain/card';
export class CardView implements View {
cardholderName: string;
brand: string;
number: string;
expMonth: string;
expYear: string;
code: string;
constructor(c?: Card) {
// ctor
}
}