├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── ENLOCK.png ├── EnLock.Test ├── EnLock.Test.csproj ├── ExtentionTest.cs ├── TestContext.cs └── TestModel.cs ├── EnLock.sln ├── EnLock ├── EnExtention.cs └── EnLock.csproj ├── LICENSE ├── README.md └── banner.PNG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/.gitignore -------------------------------------------------------------------------------- /ENLOCK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/ENLOCK.png -------------------------------------------------------------------------------- /EnLock.Test/EnLock.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock.Test/EnLock.Test.csproj -------------------------------------------------------------------------------- /EnLock.Test/ExtentionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock.Test/ExtentionTest.cs -------------------------------------------------------------------------------- /EnLock.Test/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock.Test/TestContext.cs -------------------------------------------------------------------------------- /EnLock.Test/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock.Test/TestModel.cs -------------------------------------------------------------------------------- /EnLock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock.sln -------------------------------------------------------------------------------- /EnLock/EnExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock/EnExtention.cs -------------------------------------------------------------------------------- /EnLock/EnLock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/EnLock/EnLock.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/README.md -------------------------------------------------------------------------------- /banner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enisgurkann/ENLOCK/HEAD/banner.PNG --------------------------------------------------------------------------------