Minecraft-Console-Client/MinecraftClient/Commands/CommandSource.cs

14 lines
263 B
C#
Raw Normal View History

2022-10-26 08:54:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MinecraftClient.Commands
{
public class CommandSource
{
public string UserName { get; set; } = string.Empty;
}
}