mirror of
https://github.com/Ikatono/BuckshotMultiServerMono.git
synced 2025-10-29 04:45:31 -05:00
14 lines
252 B
C#
14 lines
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BuckshotMultiServerMono.Serializable
|
|
{
|
|
public class NewPlayer
|
|
{
|
|
public string? Name { get; set; }
|
|
}
|
|
}
|