Skip to content

Instantly share code, notes, and snippets.

@MbarkT3STO
Created October 27, 2021 08:52
Show Gist options
  • Save MbarkT3STO/a4d9bdfdf582cf7b8e6c427cb1ec3cbf to your computer and use it in GitHub Desktop.
Save MbarkT3STO/a4d9bdfdf582cf7b8e6c427cb1ec3cbf to your computer and use it in GitHub Desktop.
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