Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danpeo/danilvar.entity
Base entity for Domain Driven Design
https://github.com/danpeo/danilvar.entity
Last synced: about 1 month ago
JSON representation
Base entity for Domain Driven Design
- Host: GitHub
- URL: https://github.com/danpeo/danilvar.entity
- Owner: Danpeo
- License: mit
- Created: 2023-11-09T14:46:00.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-18T16:00:00.000Z (8 months ago)
- Last Synced: 2024-04-18T17:34:28.704Z (8 months ago)
- Language: C#
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Base entity for Domain Driven Design
Usage:
```
public class Bakugan : Entity
{
public string Name { get; set; }public string ElementalAttribute { get; set; }
public int PowerLevel { get; set; }
public Bakugan(string name, string elementalAttribute, int powerLevel)
{
Name = name;
ElementalAttribute = elementalAttribute;
PowerLevel = powerLevel;
}
}
```