mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
8 lines
172 B
C#
8 lines
172 B
C#
|
namespace Roadie.Library.Configuration
|
|||
|
{
|
|||
|
public interface IInspector
|
|||
|
{
|
|||
|
bool DoCopyFiles { get; set; }
|
|||
|
bool IsInReadOnlyMode { get; set; }
|
|||
|
}
|
|||
|
}
|