11 lines
No EOL
272 B
C#
11 lines
No EOL
272 B
C#
using LANCommander.SDK.Enums;
|
|
|
|
namespace LANCommander.Server.ImportExport.Models;
|
|
|
|
public class ExportItemInfo
|
|
{
|
|
public Guid Id { get; set; }
|
|
public ImportExportRecordType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public long Size { get; set; }
|
|
} |