import { LicenseFeatures } from './LicenseFeatures';

export type ProjectLicense = {
  id: number;
  title: string;
  name: string;
  startAt: Date | null;
  till: Date | null;
  isTrial: boolean;
  features: LicenseFeatures;
};
