UNI.Core.Library
2.2.7
dotnet add package UNI.Core.Library --version 2.2.7
NuGet\Install-Package UNI.Core.Library -Version 2.2.7
<PackageReference Include="UNI.Core.Library" Version="2.2.7" />
<PackageVersion Include="UNI.Core.Library" Version="2.2.7" />
<PackageReference Include="UNI.Core.Library" />
paket add UNI.Core.Library --version 2.2.7
#r "nuget: UNI.Core.Library, 2.2.7"
#:package UNI.Core.Library@2.2.7
#addin nuget:?package=UNI.Core.Library&version=2.2.7
#tool nuget:?package=UNI.Core.Library&version=2.2.7
UNI.Core.Library
UNI.Core.Library
is a foundational .NET library providing base entities and POCO models for the UNI Framework ecosystem. It serves as the core building block for defining common data structures and base models used across UNI applications.
Features
- Base Entities: Core model classes and base entities
- Metadata Support: Built-in support for model metadata
- Cross-Platform: Built on .NET Standard 2.0 for maximum compatibility
- Lightweight: Minimal external dependencies
Installation
You can install the UNI.Core.Library
package via NuGet:
dotnet add package UNI.Core.Library
Or, in the NuGet Package Manager Console:
Install-Package UNI.Core.Library
Getting Started
1. Reference the Package
Add a reference to UNI.Core.Library in your project.
2. Import Namespaces
using UNI.Core.Library.Models;
using UNI.Core.Library.Entities;
3. Use Base Models
Inherit from base models to create your domain entities:
public class MyEntity : BaseModel
{
public string Name { get; set; }
public string Description { get; set; }
}
Model Features
- BaseModel: Provides common properties like ID, creation date, and metadata
- Metadata Support: Extensible metadata system for entity tracking
- Serialization: Built-in support for proper serialization
- Type Safety: Strong typing for all models
Dependencies
- .NET Standard 2.0
Contributing
Contributions are welcome! If you'd like to contribute, please fork the repository and submit a pull request.
License
This project is licensed under the MIT License.
Support
If you encounter any issues or have questions, feel free to open an issue in the GitHub repository.
Happy coding!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on UNI.Core.Library:
Package | Downloads |
---|---|
UNI.API.Contracts
Contracts for UNI.API |
|
UNI.API.Client
REST client for UNI.API |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
2.2.7 | 232 | 4/14/2025 |
Adding basemodel metadata