import { Collection, Field } from 'zumito-framework';

@Collection({ name: '<%= name?.toLowerCase(); %>' })
export class <%= name?.charAt(0).toUpperCase() + name?.slice(1); %> {
    @Field({ type: 'string', primary: true })
    id: string;
}
