server-master/srcs/WingsAPI.Communication/ServerApi/Protocol/SetWorldServerVisibilityRequest.cs
2026-02-10 18:21:30 +01:00

21 lines
No EOL
545 B
C#

using ProtoBuf;
using WingsEmu.DTOs.Account;
namespace WingsAPI.Communication.ServerApi.Protocol
{
[ProtoContract]
public class SetWorldServerVisibilityRequest
{
[ProtoMember(1)]
public int ChannelId { get; init; }
[ProtoMember(2)]
public string WorldGroup { get; init; }
/// <summary>
/// Being able to see this server requires this AuthorityType or higher
/// </summary>
[ProtoMember(3)]
public AuthorityType AuthorityRequired { get; init; }
}
}