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.
Connected.Framework/Connected.Runtime/Services/ServiceEvents.cs

12 lines
343 B

2 years ago
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);
}
}