LANCommander/LANCommander.Server.ImportExport/Models/ImportAssetText.cs
Pat Hartl 406a92b104 Fix import issues with scripts, archives, and legacy manifests
- 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
2026-01-24 22:32:12 -06:00

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; }
}