default to null

This commit is contained in:
Kyle Spearrin 2018-01-25 16:16:02 -05:00
parent 3869dcaf7b
commit 47385a2818
2 changed files with 3 additions and 3 deletions

View File

@ -4,12 +4,12 @@ import { Card } from '../domain/card';
export class CardView implements View {
cardholderName: string;
expMonth: string;
expMonth: string = null;
expYear: string;
code: string;
// tslint:disable
private _brand: string;
private _brand: string = null;
private _number: string;
private _subTitle: string;
// tslint:enable

View File

@ -3,7 +3,7 @@ import { View } from './view';
import { Identity } from '../domain/identity';
export class IdentityView implements View {
title: string;
title: string = null;
middleName: string;
address1: string;
address2: string;