diff options
Diffstat (limited to 'Services/Interfaces')
| -rw-r--r-- | Services/Interfaces/IBrightness.cs | 8 | ||||
| -rw-r--r-- | Services/Interfaces/IResizer.cs | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Services/Interfaces/IBrightness.cs b/Services/Interfaces/IBrightness.cs new file mode 100644 index 0000000..cf8f631 --- /dev/null +++ b/Services/Interfaces/IBrightness.cs @@ -0,0 +1,8 @@ + +namespace Avalar.Services.Interfaces +{ + interface IBrightness : IProcessor + { + public int Brightness { get; set; } + } +} diff --git a/Services/Interfaces/IResizer.cs b/Services/Interfaces/IResizer.cs new file mode 100644 index 0000000..d7e5cdd --- /dev/null +++ b/Services/Interfaces/IResizer.cs @@ -0,0 +1,9 @@ + +namespace Avalar.Services.Interfaces +{ + public interface IResizer : IProcessor + { + public uint Width { get; set; } + public uint Height { get; set; } + } +} |
