Modele TOny

pull/24/head
Fages Tony 2 years ago
parent 61ad118bbf
commit ce331fd517

@ -5,11 +5,6 @@ VisualStudioVersion = 17.0.31611.283
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParionsCuite", "ParionsCuite\ParionsCuite.csproj", "{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParionsCuite", "ParionsCuite\ParionsCuite.csproj", "{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Modele", "Modele", "{02D846AB-B58D-4FDD-9895-E07929FE8A95}"
ProjectSection(SolutionItems) = preProject
Manager.cs = Manager.cs
EndProjectSection
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU

@ -71,7 +71,7 @@
<!-- 2e ligne --> <!-- 2e ligne -->
<Grid Grid.Row="1"> <Grid Grid.Row="1">
<ContentView> <ContentView>
<info:Info/> <pari:Parier/>
</ContentView> </ContentView>
</Grid> </Grid>

@ -0,0 +1,14 @@
using System;
namespace ParionsCuite.Modeles
{
public class Autre
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Autre()
{
}
}
}

@ -0,0 +1,17 @@
using System;
namespace ParionsCuite.Modeles
{
internal class Boissons
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Boissons()
{
}
}
}

@ -0,0 +1,16 @@
using System;
namespace ParionsCuite.Modeles
{
internal class Inviter
{
public string Nom;
public string Prenom;
public Inviter()
{
}
}
}

@ -0,0 +1,14 @@
using System;
namespace ParionsCuite.Modeles
{
public class Nourriture
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Nourriture()
{
}
}
}

@ -33,6 +33,9 @@
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage> <CreatePackage>false</CreatePackage>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<!-- App Icon --> <!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
@ -79,6 +82,7 @@
<None Remove="Views\Participations\" /> <None Remove="Views\Participations\" />
<None Remove="Views\Participations\Autre\" /> <None Remove="Views\Participations\Autre\" />
<None Remove="Views\Participations\Boisson\" /> <None Remove="Views\Participations\Boisson\" />
<None Remove="Modeles\" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<BundleResource Include="Resources\Images\fleches.png" /> <BundleResource Include="Resources\Images\fleches.png" />
@ -91,5 +95,6 @@
<Folder Include="Views\Participations\" /> <Folder Include="Views\Participations\" />
<Folder Include="Views\Participations\Autre\" /> <Folder Include="Views\Participations\Autre\" />
<Folder Include="Views\Participations\Boisson\" /> <Folder Include="Views\Participations\Boisson\" />
<Folder Include="Modeles\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

Loading…
Cancel
Save