- Scripts now import properly - Archives now import properly when using non-absolute storage location paths - Support legacy LCX files that have manifests with the name _manifest.yml
9 lines
No EOL
253 B
C#
9 lines
No EOL
253 B
C#
namespace LANCommander.Server.ImportExport.Models;
|
|
|
|
public class ImportAssetText : IImportAsset
|
|
{
|
|
public Guid RecordId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Contents { get; set; }
|
|
public string Path { get; set; }
|
|
} |