Skip to content

Instantly share code, notes, and snippets.

@Chriz76
Created May 15, 2021 16:46
Show Gist options
  • Save Chriz76/24a49fb10d4962efa5c01d73ed45f172 to your computer and use it in GitHub Desktop.
Save Chriz76/24a49fb10d4962efa5c01d73ed45f172 to your computer and use it in GitHub Desktop.
namespace UserService.Entities
{
public class User
{
public int ID { get; set; }
public string Name { get; set; }
public string Mail { get; set; }
public string OtherData { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment