Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }