Date
Generally
| Property | Value |
|---|---|
| Description | An date entity with day, month and a year (15.12.1948). |
| Namespace | DoofesZeug.Entities.DateAndTime |
| BaseClass | Entity |
| SourceCode | Date.cs |
Properties
Declared
| Name | Type | Read | Write | DefaultValue |
|---|---|---|---|---|
| Day | Day | ✓ | ✓ | NULL |
| Month | Month | ✓ | ✓ | NULL |
| Year | Year | ✓ | ✓ | NULL |
Inherited
| Name | Type | Read | Write | DefaultValue |
|---|---|---|---|---|
UML Diagram

Code Example
An example or code snippet follows soon.
Console Example
┌──────────┬───────┐
│ Property │ Value │
├──────────┼───────┤
│ Day │ 11 │
│ Month │ 11 │
│ Year │ 1942 │
└──────────┴───────┘
JSON Example
{
"Day": 11,
"Month": 11,
"Year": 1942
}
YAML Example
Day:
Value: 11
Month:
Value: 11
Year:
Value: 1942