Class BasicExportImportDto
Inheritance
System.Object
BasicExportImportDto
Namespace: Dnn.ExportImport.Dto
Assembly: DotNetNuke.SiteExportImport.Library.dll
Syntax
public abstract class BasicExportImportDto : object
Properties
| Improve this Doc View SourceId
Gets or sets id of the object in the export/import database.
Declaration
public virtual int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
LocalId
Gets or sets id of the object in the local database. Note that this is use only during the import process and must remain NULL during the export process.
Declaration
public virtual int? LocalId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
ReferenceId
Gets or sets referenced Id (i.e., foreighn key) for another object in the export/import database.
Declaration
public virtual int? ReferenceId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |