server-master/srcs/WingsAPI.Communication/Families/FamilyIdResponse.cs
2026-02-10 18:21:30 +01:00

19 lines
No EOL
431 B
C#

using System.Collections.Generic;
using ProtoBuf;
using WingsAPI.Data.Families;
namespace WingsAPI.Communication.Families
{
[ProtoContract]
public class FamilyIdResponse
{
[ProtoMember(1)]
public FamilyDTO Family { get; set; }
[ProtoMember(2)]
public List<FamilyMembershipDto> Members { get; set; }
[ProtoMember(3)]
public List<FamilyLogDto> Logs { get; set; }
}
}