main
 1using System;
 2using ProtoBuf;
 3
 4namespace presentation.windows.common.messages
 5{
 6    [Serializable]
 7    [ProtoContract]
 8    public class StartedApplication
 9    {
10        [ProtoMember(1)]
11        public string message { get; set; }
12
13        public override string ToString()
14        {
15            return base.ToString() + " " + message;
16        }
17    }
18}