Refactored repo organization. Added Jenkinsfile.
This commit is contained in:
14
Props.Shop/Framework/IOption.cs
Normal file
14
Props.Shop/Framework/IOption.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Props.Shop.Framework
|
||||
{
|
||||
public interface IOption
|
||||
{
|
||||
public string Name { get; }
|
||||
public string Description { get; }
|
||||
public bool Required { get; }
|
||||
public string GetValue();
|
||||
public bool SetValue(string value);
|
||||
public Type Type { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user