10 lines
285 B
C#
10 lines
285 B
C#
namespace LANCommander.Models
|
|
{
|
|
public class ArchiveBrowserOptions
|
|
{
|
|
public Guid ArchiveId { get; set; }
|
|
public bool Select { get; set; }
|
|
public bool Multiple { get; set; } = false;
|
|
public bool AllowDirectories { get; set; } = false;
|
|
}
|
|
}
|