Files
zszq-trs/YLErpDAL/Modules/ClientModule/Dto/ClientSimpleDto.cs
T
2024-05-09 14:06:26 +08:00

18 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.ClientModule.Dto
{
public class ClientSimpleDto
{
public int id { get; set; }
public string Name { set; get; }
public int? LevelId { get; set; }
}
}