/**
 * Raw input type for DTO constructors
 */
export interface IBaseDtoInput {
    id: string;
    createdAt: number;
    updatedAt: number;
}
/**
 * Standard output type after serialization
 */
export interface IBaseDtoOutput {
    id: string;
    createdAt: number;
    updatedAt: number;
}
