export interface CreateCampaignDTO {
  title: string;
  subject: string;
  htmlBody: string;
  senderId?: string;
  contactListId?: string | null;
  createdById: string;
}
