Skip to content

Latest commit

 

History

History
83 lines (59 loc) · 1.46 KB

File metadata and controls

83 lines (59 loc) · 1.46 KB

Time

Generally

Property Value
Description An time entity with hours, minutes and the seconds (12:34:56).
Namespace DoofesZeug.Entities.DateAndTime
BaseClass Entity
SourceCode Time.cs

Properties

Declared

Name Type Read Write DefaultValue
Hour Hour NULL
Minute Minute NULL
Second Second NULL

Inherited

Name Type Read Write DefaultValue

UML Diagram

Time.png


Code Example

An example or code snippet follows soon.

Console Example

┌──────────┬───────┐
│ Property │ Value │
├──────────┼───────┤
│ Hour     │ 12    │
│ Minute   │ 43    │
│ Second   │ 56    │
└──────────┴───────┘

JSON Example

{
  "Hour": 12,
  "Minute": 43,
  "Second": 56
}

YAML Example

Hour:
  Value: 12
Minute:
  Value: 43
Second:
  Value: 56