namespace Oqtane.Models
{
///
/// Generic Model for Module-Contents to enable Import/Export of the Module-Data
///
public class ModuleContent
{
///
/// Reference to a for which this content is relevant.
///
public string ModuleDefinitionName { get; set; }
///
/// Version of the which is used here. _It's not the version of the Content_
///
public string Version { get; set; }
///
/// Serialized Content of the module for import/export.
///
public string Content { get; set; }
}
}