2025-12-04 23:44:42 -06:00
|
|
|
namespace LANCommander.Server.ImportExport.Models;
|
|
|
|
|
|
|
|
|
|
public class ImportAssetText : IImportAsset
|
|
|
|
|
{
|
|
|
|
|
public Guid RecordId { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Contents { get; set; }
|
2026-01-24 22:32:12 -06:00
|
|
|
public string Path { get; set; }
|
2025-12-04 23:44:42 -06:00
|
|
|
}
|