2025-07-19 17:39:55 -05:00
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
2025-07-27 17:51:50 -05:00
|
|
|
namespace LANCommander.Server.ImportExport.Models;
|
2025-07-19 17:39:55 -05:00
|
|
|
|
|
|
|
|
public class ExportItemInfo
|
|
|
|
|
{
|
2025-07-25 17:57:33 -05:00
|
|
|
public Guid Id { get; set; }
|
2025-08-01 02:27:06 -05:00
|
|
|
public ImportExportRecordType Type { get; set; }
|
2025-07-19 17:39:55 -05:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
}
|