This commit is contained in:
2025-11-16 16:00:30 +03:30
parent 701a533acf
commit b693aaa375
4 changed files with 160 additions and 3 deletions
+21
View File
@@ -31,4 +31,25 @@ namespace xPushService.Constants
[StringValue("Candidate")]
Candidate,
}
/// <summary>
/// Provides All Actions Based on Entities ...
/// </summary>
public enum XBaseEntityHubAction
{
[StringValue("Add")]
Add,
[StringValue("AddOrUpdate")]
AddOrUpdate,
[StringValue("AddMany")]
AddMany,
[StringValue("Update")]
Update,
[StringValue("UpdateMany")]
UpdateMany,
[StringValue("Delete")]
Delete,
[StringValue("DeleteMany")]
DeleteMany,
}
}