feat: add core domain model foundations
This commit is contained in:
8
core/asset.ts
Normal file
8
core/asset.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { AssetId } from "./id";
|
||||
|
||||
export type Asset = {
|
||||
id: AssetId;
|
||||
name: string;
|
||||
mimeType: string;
|
||||
source: string;
|
||||
};
|
||||
Reference in New Issue
Block a user