Created
October 27, 2021 08:52
-
-
Save MbarkT3STO/a4d9bdfdf582cf7b8e6c427cb1ec3cbf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AuthorModel | |
{ | |
public int Id | |
{ | |
get; set; | |
} | |
public string FirstName | |
{ | |
get;set; | |
} | |
public string LastName | |
{ | |
get; set; | |
} | |
public string Address | |
{ | |
get; set; | |
} | |
} | |
public class AuthorDTO | |
{ | |
public int Id | |
{ | |
get; set; | |
} | |
public string FirstName | |
{ | |
get; set; | |
} | |
public string LastName | |
{ | |
get; set; | |
} | |
public string Address | |
{ | |
get; set; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment