UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

15 lines (13 loc) 266 B
import { User } from "./user"; export interface UserContact { id: string; phoneNumber: string; address: string; facebookUrl: string; linkedinUrl: string; twitterUrl: string; instagramUrl: string; user?: User; updatedAt: Date; createdAt: Date; }