NotificationDocument.cs 241 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Notification))]
  5. public class NotificationDocument : EntityDocument<NotificationLink>, IManyToMany<Notification, Document>, ILicense<LogisticsLicense>
  6. {
  7. }
  8. }