15 lines
289 B
C#
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;
|
|
}
|
|
} |