lab1 ready

This commit is contained in:
Maxim 2024-11-18 19:32:07 +04:00
parent c4e6741777
commit ac3290f085
4 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectGSM.Entities.Enums
{
[Flags]
public enum LicenseType
{
None, Base, Novokek, Pro, Master, Guru
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectGSM.Entities.Enums
{
public enum Status
{
Success,
Consideration,
WorkDocumnets,
WorkWithCourt,
Bribe
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectGSM.Entities.Enums
{
public enum TypeAppeal
{
Bisness, Immovables, Divorce, Inheritance
}
}

25
ProjectGSM/ProjectGSM.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35208.52
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProjectGSM", "ProjectGSM.csproj", "{7B07CD6F-951C-4BAB-9EE5-BA47030F0A9C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7B07CD6F-951C-4BAB-9EE5-BA47030F0A9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7B07CD6F-951C-4BAB-9EE5-BA47030F0A9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7B07CD6F-951C-4BAB-9EE5-BA47030F0A9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7B07CD6F-951C-4BAB-9EE5-BA47030F0A9C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7F60A3F6-8280-4D35-8CD7-39ECA1D7A494}
EndGlobalSection
EndGlobal