import { WithAll, WithOutAll } from "tools-packages"; export interface Wallet extends WithAll { ownerId: string; name: string; color: string; icon: string; } export interface AddWallet extends WithOutAll { } export interface UpdateWallet extends Partial { } export interface PayloadAddWallet extends Omit { } export interface PayloadUpdateWallet extends Omit { }