11 lines
203 B
C#
11 lines
203 B
C#
namespace Northbound
|
|
{
|
|
/// <summary>
|
|
/// 팀에 속한 엔티티
|
|
/// </summary>
|
|
public interface ITeamMember
|
|
{
|
|
TeamType GetTeam();
|
|
void SetTeam(TeamType team);
|
|
}
|
|
} |