add Brand class and associated unit tests

This commit is contained in:
Vincent Guillet
2025-10-14 14:53:18 +02:00
parent 8c3de85f36
commit b0ba0886fd
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { Brand } from './brand';
describe('Brand', () => {
it('should create an instance', () => {
expect(new Brand()).toBeTruthy();
});
});

View File

@@ -0,0 +1,3 @@
export class Brand {
name: string = '';
}