wip
This commit is contained in:
@@ -16,7 +16,7 @@ export interface SponsorAccountProps {
|
||||
passwordHash: string;
|
||||
companyName: string;
|
||||
isActive: boolean;
|
||||
createdAt?: Date;
|
||||
createdAt: Date;
|
||||
lastLoginAt?: Date;
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ export class SponsorAccount {
|
||||
private companyName: string;
|
||||
private isActive: boolean;
|
||||
private readonly createdAt: Date;
|
||||
private lastLoginAt?: Date;
|
||||
private lastLoginAt: Date | undefined;
|
||||
|
||||
private constructor(props: SponsorAccountProps) {
|
||||
this.id = props.id;
|
||||
|
||||
Reference in New Issue
Block a user