import { Model } from "../model";
export interface ItemPhoto extends Model {
    author: string;
    subtitle: string;
    date: Date;
    main: boolean;
    isNew?: boolean;
}
