diff options
| -rw-r--r-- | ApartmentManager/ApartmentManager/ApartmentManager.csproj | 2 | ||||
| -rw-r--r-- | ApartmentManager/ApartmentManager/Model/Class1.cs | 12 | 
2 files changed, 13 insertions, 1 deletions
| diff --git a/ApartmentManager/ApartmentManager/ApartmentManager.csproj b/ApartmentManager/ApartmentManager/ApartmentManager.csproj index dee3946..7ea4d2a 100644 --- a/ApartmentManager/ApartmentManager/ApartmentManager.csproj +++ b/ApartmentManager/ApartmentManager/ApartmentManager.csproj @@ -99,6 +99,7 @@      <Compile Include="MainPage.xaml.cs">        <DependentUpon>MainPage.xaml</DependentUpon>      </Compile> +    <Compile Include="Model\Class1.cs" />      <Compile Include="Persistency\Persistency.cs" />      <Compile Include="Properties\AssemblyInfo.cs" />    </ItemGroup> @@ -135,7 +136,6 @@    </ItemGroup>    <ItemGroup>      <Folder Include="Handler\" /> -    <Folder Include="Model\" />      <Folder Include="ViewModel\" />      <Folder Include="View\" />    </ItemGroup> diff --git a/ApartmentManager/ApartmentManager/Model/Class1.cs b/ApartmentManager/ApartmentManager/Model/Class1.cs new file mode 100644 index 0000000..08e3d73 --- /dev/null +++ b/ApartmentManager/ApartmentManager/Model/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ApartmentManager.Model +{ +    class Class1 +    { +    } +} |