Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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;
}
}
```