24 lines
451 B
C#
24 lines
451 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Main.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_tb : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 机器人id
|
|||
|
/// </summary>
|
|||
|
public int rid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 邀请码
|
|||
|
/// </summary>
|
|||
|
public string invitecode { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|