import { ISearch } from "./search"; /** The object used to specify the arguments when searching for a . */ export interface IWorkTimeSearch extends ISearch { /** * Gets or sets search for WorkTimes with this Name. Wildcard can be used by prepending/appending * "%" to string. Example "%name%". */ name: string; } //# sourceMappingURL=work_time_search.d.ts.map