crm.core/code/Crm.Core.External.Domain/Dto/UpdateCapitalDto.cs

18 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.External.Domain.Dto
{
public class UpdateCapitalDto
{
public string? Appid { get; set; }
public string? Resid { get; set; }
public string? Capital { get; set; }
}
}