PresentationLayer.cs 268 B

1234567891011
  1. namespace Quadarax.Foundation.Infrastructure.Layers
  2. {
  3. public abstract class PresentationLayer : Layer
  4. {
  5. protected PresentationLayer(string name) : base(name)
  6. {
  7. LayerType = LayerClassificationEnum.Presentation;
  8. }
  9. }
  10. }