You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Customer.cs 325B

123456789101112
  1. using AspNetCore.Identity.MongoDbCore.Models;
  2. using MongoDbGenericRepository.Attributes;
  3. namespace Diligent.WebAPI.Data.Entities
  4. {
  5. [CollectionName("Customer")]
  6. public class Customer : MongoIdentityUser<Guid>
  7. {
  8. public string FirstName { get; set; }
  9. public string LastName { get; set; }
  10. }
  11. }