10 lines
314 B
C#
10 lines
314 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Lagrange.OneBot.Core.Entity;
|
|
|
|
public class OneBotFriendGroup(uint groupId, string groupName)
|
|
{
|
|
[JsonPropertyName("group_id")] public uint GroupId { get; set; } = groupId;
|
|
|
|
[JsonPropertyName("group_name")] public string GroupName { get; set; } = groupName;
|
|
} |