export type IAdvertisementModelWorkType = 'Tam Zamanlı' | 'Yarı Zamanlı' | "Dönemsel" | "Stajyer" | "Freelance" | "Uzaktan";
export interface IAdvertisementModelAttributes {
    _id: string;
    slug: string;
    title: string;
    description: string;
    abstract: string;
    employmentType: IAdvertisementModelWorkType;
    requirements: string[];
    createdBy: string;
    benefits?: string[];
    updatedAt?: Date;
    createdAt?: Date;
}
