Advertisement
oldhowl

Untitled

Feb 13th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1.  public class NewMatchBulletinNotificationMessage : Notification
  2.     {
  3.         public double PercentMatch { get; private set; }
  4.         public string Email { get; private set; }
  5.         public NewMatchBulletinNotificationMessage(
  6.             int userId,
  7.             double percentMatch,
  8.             string message,
  9.             int itemId,
  10.             string email)
  11.             : base(userId, message, itemId, NotificationType.MusicianSearchMatch)
  12.         {
  13.             Email = email;
  14.             PercentMatch = percentMatch;
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement