12 lines
292 B
C#
12 lines
292 B
C#
namespace Adaptation.Shared.Properties
|
|
{
|
|
|
|
public interface IDrive
|
|
{
|
|
public bool Use { get; set; }
|
|
public string Letter { get; set; }
|
|
public string Share { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |