Release 1
This commit is contained in:
parent
2b0b03bb60
commit
768dbb4532
|
@ -92,7 +92,7 @@ namespace MapTo.Extensions
|
|||
|
||||
foreach(var prop in properties)
|
||||
{
|
||||
if (prop.FullyQualifiedType.ToString() == property.FullyQualifiedType.ToString()) return true;
|
||||
if (prop.Name == property.Name) return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
@ -16,5 +16,7 @@ namespace BlueWest.Data
|
|||
public double Quantity { get; } // Bought
|
||||
public double Fee { get; }
|
||||
public DateTime DateTime { get; }
|
||||
|
||||
public string ReadData { get; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ using MapTo;
|
|||
namespace BlueWest.Data
|
||||
{
|
||||
[MapFrom(typeof(UserUpdateDto))]
|
||||
public partial struct User
|
||||
public partial class User
|
||||
{
|
||||
public int Id { get; }
|
||||
public string Name { get; set; }
|
||||
|
|
Loading…
Reference in New Issue