You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
12 lines
343 B
using Connected.Notifications;
|
|
|
|
namespace Connected.ServiceModel
|
|
{
|
|
public static class ServiceEvents
|
|
{
|
|
public const string Inserted = nameof(IServiceNotifications<int>.Inserted);
|
|
public const string Updated = nameof(IServiceNotifications<int>.Updated);
|
|
public const string Deleted = nameof(IServiceNotifications<int>.Deleted);
|
|
}
|
|
}
|