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