main
1using System;
2using ProtoBuf;
3
4namespace presentation.windows.common.messages
5{
6 [Serializable]
7 [ProtoContract]
8 public class AddedNewFamilyMember : IEvent
9 {
10 [ProtoMember(1)]
11 public Guid id { get; set; }
12 [ProtoMember(2)]
13 public string first_name { get; set; }
14 [ProtoMember(3)]
15 public string last_name { get; set; }
16 }
17}