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