7 lines
154 B
C#
7 lines
154 B
C#
namespace Adaptation.Shared.Properties;
|
|
|
|
public interface IAppSettings
|
|
{
|
|
public string Company { get; set; }
|
|
public Drive[] Drives { get; set; }
|
|
} |