Update code sample.

This commit is contained in:
Mohammadreza Taikandi 2020-12-24 12:45:31 +00:00
parent dee3e741c4
commit f1122af3d1
1 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,6 @@
![Nuget](https://img.shields.io/nuget/v/mapto?logo=nuget)
![Publish Packages](https://github.com/mrtaikandi/MapTo/workflows/Publish%20Packages/badge.svg)
An object to object mapping generator using using [Roslyn source generator](https://github.com/dotnet/roslyn/blob/master/docs/features/source-generators.md).
## Installation
@ -21,6 +19,9 @@ public partial class UserViewModel
public string FirstName { get; }
public string LastName { get; }
[IgnoreProperty]
public string FullName { get; set; }
}
```