15 lines
331 B
C#
15 lines
331 B
C#
using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JSMachine.WMS.Netty.NettyAsServer.Command
|
|
{
|
|
public class BaseCmd
|
|
{
|
|
public virtual string Msg { get; set; }
|
|
}
|
|
}
|