using System; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using VkNet.Enums; namespace VkNet.Model; /// /// Добавление участника или заявки на вступление в сообщество /// [Serializable] public class GroupJoin : IGroupUpdate { /// /// Идентификатор пользователя /// [JsonProperty("user_id")] public long? UserId { get; set; } /// /// Указывает, как именно был добавлен участник. /// [JsonProperty("join_type")] [JsonConverter(typeof(StringEnumConverter))] public GroupJoinType? JoinType { get; set; } }