12 lines
No EOL
270 B
C#
12 lines
No EOL
270 B
C#
using System.Collections.Generic;
|
|
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.Families
|
|
{
|
|
[ProtoContract]
|
|
public class FamilyChangeAuthorityRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public List<FamilyChangeContainer> FamilyMembers { get; set; }
|
|
}
|
|
} |