CBielstein / APRSsharp

APRS# - Modern APRS software for the amateur radio community
MIT License
12 stars 5 forks source link

Unnest nested types #71

Closed CBielstein closed 2 years ago

CBielstein commented 3 years ago

Description

Several places in code have nested types. Examples of this include Packet.Type and Timestamp.Type. These files are hundreds of lines long and unnesting these types (e.g. to PacketType and TimestampType) would help break up long files and clarify the difference between a field on a packet and a type of packet.

Acceptance Criteria

CBielstein commented 3 years ago

Potentially some options in Position.cs as well.