11 lines
No EOL
214 B
C#
11 lines
No EOL
214 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.Services.Requests
|
|
{
|
|
[ProtoContract]
|
|
public class ServiceBasicRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public string ServiceName { get; init; }
|
|
}
|
|
} |