server-master/srcs/WingsAPI.Communication/Services/Responses/ServiceGetAllResponse.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
302 B
C#

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