import { AccessControlEntry } from './accesscontrolentry.entity'; import { HorselessUri } from './horselessuri.entity'; import { Principal } from './principal.entity'; export interface NugetPackage { Id: string; DisplayName?: string; ObjectId?: string; IsSoftDeleted?: boolean; CreatedAt?: Date; PublishAt?: Date; UnPublishAt?: Date; IsPublished?: boolean; PackageId?: string; PackageVersion?: string; PackageAuthor?: string; PackageSource?: string; Timestamp: ArrayBuffer; UpdatedAt?: Date; DictionaryKey?: string; PostgresRowVersion: number; ODataEntitySetName?: string; ODataPrefix?: string; IngressAPIHttpRoute?: string; IngressParentHorselessUri?: string; EntityUriId?: string; Description?: string; DeploymentPackageRootNamespace?: string; DeploymentPackageVersion?: string; AccessControlEntries?: AccessControlEntry[]; Owners?: Principal[]; EntityUri?: HorselessUri; }