11 lines
213 B
C#
11 lines
213 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace LOC.Core.Tokens.Client
|
|||
|
{
|
|||
|
public class ClientIgnoreToken
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string IgnoredPlayer { get; set; }
|
|||
|
}
|
|||
|
}
|