17 lines
296 B
C#
17 lines
296 B
C#
|
using ET;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public struct TeamRequestInfo
|
|||
|
{
|
|||
|
public long Id;
|
|||
|
public RequstLabalType type;
|
|||
|
public string name;
|
|||
|
public int level;
|
|||
|
public int timeOut;
|
|||
|
public JobType job;
|
|||
|
}
|
|||
|
}
|