Files
Shrink-IDC/Lagrange.Core/Lagrange.Core/Common/Entity/BotFriendGroup.cs

15 lines
289 B
C#

namespace Lagrange.Core.Common.Entity;
[Serializable]
public struct BotFriendGroup
{
public uint GroupId { get; }
public string GroupName { get; }
internal BotFriendGroup(uint groupId, string groupName)
{
GroupId = groupId;
GroupName = groupName;
}
}