Files
cs2410/contacts/AddressType.cs
T
2026-08-04 06:56:44 -06:00

12 lines
124 B
C#

namespace Contacts
{
public enum AddressType
{
Home,
Business,
Work,
Other
}
}