16 lines
332 B
C#
16 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.CRM
|
|
{
|
|
public class WwHhuserEidDto
|
|
{
|
|
public string? USERID { get; set; }
|
|
public string? CORPID { get; set; }
|
|
public decimal? EID { get; set; }
|
|
}
|
|
}
|