67 lines
1.1 KiB
C#
67 lines
1.1 KiB
C#
|
|
namespace Sozsoft.Platform.Enums;
|
|||
|
|
|
|||
|
|
public enum TableNameEnum
|
|||
|
|
{
|
|||
|
|
Language,
|
|||
|
|
LanguageKey,
|
|||
|
|
LanguageText,
|
|||
|
|
SettingDefinition,
|
|||
|
|
Notification,
|
|||
|
|
NotificationRule,
|
|||
|
|
BackgroundWorker_MailQueue,
|
|||
|
|
BackgroundWorker_MailQueueEvents,
|
|||
|
|
BackgroundWorker_MailQueueTableFormat,
|
|||
|
|
LogEntry,
|
|||
|
|
AiBot,
|
|||
|
|
Branch,
|
|||
|
|
BranchUsers,
|
|||
|
|
GlobalSearch,
|
|||
|
|
Route,
|
|||
|
|
Menu,
|
|||
|
|
DataSource,
|
|||
|
|
ListForm,
|
|||
|
|
ListFormField,
|
|||
|
|
ListFormCustomization,
|
|||
|
|
ListFormImport,
|
|||
|
|
ListFormImportExecute,
|
|||
|
|
Note,
|
|||
|
|
BackgroundWorker,
|
|||
|
|
ForumCategory,
|
|||
|
|
ForumTopic,
|
|||
|
|
ForumPost,
|
|||
|
|
CustomEntity,
|
|||
|
|
CustomEntityField,
|
|||
|
|
ApiMigration,
|
|||
|
|
CrudEndpoint,
|
|||
|
|
CustomEndpoint,
|
|||
|
|
CustomComponent,
|
|||
|
|
ReportCategory,
|
|||
|
|
ReportTemplate,
|
|||
|
|
IpRestriction,
|
|||
|
|
Sector,
|
|||
|
|
ContactTitle,
|
|||
|
|
Currency,
|
|||
|
|
CountryGroup,
|
|||
|
|
Country,
|
|||
|
|
City,
|
|||
|
|
District,
|
|||
|
|
SkillType,
|
|||
|
|
Skill,
|
|||
|
|
SkillLevel,
|
|||
|
|
UomCategory,
|
|||
|
|
Uom,
|
|||
|
|
WorkHour,
|
|||
|
|
About,
|
|||
|
|
Service,
|
|||
|
|
Product,
|
|||
|
|
PaymentMethod,
|
|||
|
|
InstallmentOption,
|
|||
|
|
Order,
|
|||
|
|
OrderItem,
|
|||
|
|
BlogCategory,
|
|||
|
|
BlogPost,
|
|||
|
|
Demo,
|
|||
|
|
Contact,
|
|||
|
|
DynamicService,
|
|||
|
|
}
|