main
 1using System;
 2using ProtoBuf;
 3
 4namespace presentation.windows.common.messages
 5{
 6    [Serializable]
 7    [ProtoContract]
 8    public class NewAccountCreated : IEvent
 9    {
10        [ProtoMember(1)]
11        public string name { get; set; }
12    }
13}