CodeLiturgy.Dashboard/BlueWest.Data/User/UserUpdateDto.cs

11 lines
166 B
C#
Raw Normal View History

2021-12-06 02:49:27 +03:00
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(User))]
2021-12-08 04:43:29 +03:00
public partial struct UserUpdateDto
2021-12-06 02:49:27 +03:00
{
2022-08-01 00:09:39 +03:00
public string Name { get; set; }
2021-12-06 02:49:27 +03:00
}
}