Added Customer, Contact and Address with Service
Labeled all service to enable assembly scanning
This commit is contained in:
@@ -1,5 +1,30 @@
|
||||
namespace LiteCharms.Features;
|
||||
|
||||
public enum ContactTypes : int
|
||||
{
|
||||
Personal = 0,
|
||||
Business = 1,
|
||||
Other = 2
|
||||
}
|
||||
|
||||
public enum AddressType
|
||||
{
|
||||
Billing = 1,
|
||||
Shipping = 2,
|
||||
Other = 3
|
||||
}
|
||||
|
||||
public enum AddressBuildingTypes : int
|
||||
{
|
||||
Residential = 0,
|
||||
Commercial = 1,
|
||||
Industrial = 2,
|
||||
MixedUse = 3,
|
||||
Agricultural = 4,
|
||||
Institutional = 5,
|
||||
Recreational = 6,
|
||||
}
|
||||
|
||||
public enum SocialMediaTypes : int
|
||||
{
|
||||
Twitter = 0,
|
||||
|
||||
Reference in New Issue
Block a user