/**
 * Entity definition for the User domain
 */

export interface UserEntity {
  id: string;
  // Add your entity properties here
}

export type UserCreationData = Omit<UserEntity, 'id'>;
export type UserUpdateData = Partial<UserCreationData>;