Files
components/LiteCharms.Features/Enums.cs
T
Khwezi Mngoma 7136e4fc70 Added Customer, Contact and Address with Service
Labeled all service to enable assembly scanning
2026-05-26 00:27:11 +02:00

58 lines
883 B
C#

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,
Facebook = 1,
Instagram = 2,
LinkedIn = 3,
TikTok = 4,
YouTube = 5,
Pinterest = 6,
Reddit = 7,
Tumblr = 8
}
public enum EmailStatuses : int
{
GeneralError = 0,
AuthenticationError = 1,
ProtocolError = 2,
Connected = 3,
Disconnected = 4,
TooManyConnections = 5,
ConnectionAborted = 6,
Success = 7
}
public enum Priorities : int
{
Low = 0,
Medium = 1,
High = 2,
}