10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import { UserLevel } from '../enums/user-level.enum';
|
|
import { LoyaltyProfile } from './loyalty-profile.entity';
|
|
export declare class UserLevelHistory {
|
|
id: string;
|
|
loyaltyProfile: LoyaltyProfile;
|
|
level: UserLevel;
|
|
reason?: string | null;
|
|
createdAt: Date;
|
|
}
|