import { CountryActionEnum } from "../../entities"; import { DeepPartialButRequired } from "./api.utils.interface"; import { ICountryCreateDto, ICountryCreateExclude } from "./country.create.dto.interface"; export type ICountryUpdateDto = Omit & { actionData: ICountryActionDataDto; }, ICountryCreateExclude>; export interface ICountryActionDataDto { action: CountryActionEnum; remark?: string; }