diff --git a/client/src/app/models/brand/brand.spec.ts b/client/src/app/models/brand/brand.spec.ts new file mode 100644 index 0000000..75cd13b --- /dev/null +++ b/client/src/app/models/brand/brand.spec.ts @@ -0,0 +1,7 @@ +import { Brand } from './brand'; + +describe('Brand', () => { + it('should create an instance', () => { + expect(new Brand()).toBeTruthy(); + }); +}); diff --git a/client/src/app/models/brand/brand.ts b/client/src/app/models/brand/brand.ts new file mode 100644 index 0000000..8408f28 --- /dev/null +++ b/client/src/app/models/brand/brand.ts @@ -0,0 +1,3 @@ +export class Brand { + name: string = ''; +}