Ch3Beverage: My version of a Decorator without the construction and hold of the Beverage inside the decorator abstract class.

This commit is contained in:
2025-11-09 16:01:42 +01:00
parent 778fec0b34
commit 752f3d929b
4 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>