This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
405 B
C#

namespace Oqtane.Shared {
public class SyncEventActions {
// client actions for PageState management
public const string Refresh = "Refresh";
public const string Reload = "Reload";
// server actions for raising Events
public const string Create = "Create";
public const string Update = "Update";
public const string Delete = "Delete";
}
}