MapTo/test/TestConsoleApp/Data/UserUpdateDto.cs

19 lines
408 B
C#
Raw Normal View History

2021-12-08 21:20:51 +03:00
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(User))]
public partial struct UserUpdateDto
{
public string Name { get; set; }
public string Address { get; set; }
public string BTCAddress { get; set; }
public string LTCAddress { get; set; }
public double BTCAmount { get; set; }
public double LTCAmount { get; set; }
}
}