예제 #1
0
 public NotificationSummary(NotificationADO note)
 {
     Uid           = note.Uid;
     NumberOfWords = note.NumberOfWords;
     Created       = note.Created;
 }
예제 #2
0
        public bool Equals(NotificationADO obj)
        {
            bool ret = Type == obj.Type && JMessage.Equals(obj.JMessage);

            return(ret);
        }