// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using ProtoBuf; namespace WingsAPI.Communication.Services.Responses { [ProtoContract] public class ServiceGetAllResponse { [ProtoMember(1)] public List Services { get; init; } } }