XG.Model.Domain.Notification.Notification C# (CSharp) Method

Notification() public method

public Notification ( Notification aType, AObject aObject1, AObject aObject2 = null ) : System
aType Notification
aObject1 AObject
aObject2 AObject
return System
        public Notification(Notification.Types aType, AObject aObject1, AObject aObject2 = null)
        {
            _type = aType;
            _object1 = aObject1;
            _object2 = aObject2;
            _time = DateTime.Now;
        }
Notification