7 lines
178 B
C#
7 lines
178 B
C#
|
|
namespace LANCommander.Server.ImportExport.Legacy.Models;
|
||
|
|
|
||
|
|
internal class SavePathEntry
|
||
|
|
{
|
||
|
|
public string ArchivePath { get; set; }
|
||
|
|
public string ActualPath { get; set; }
|
||
|
|
}
|