2025-04-10 19:45:41 -05:00
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
2025-07-27 17:51:50 -05:00
|
|
|
namespace LANCommander.Server.ImportExport.Models;
|
2025-04-09 19:44:07 -05:00
|
|
|
|
|
|
|
|
public class ImportItemInfo
|
|
|
|
|
{
|
2025-08-01 02:27:06 -05:00
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
|
public ImportExportRecordType Type { get; set; }
|
2025-04-09 19:44:07 -05:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
}
|