您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Customer.cs 396B

12345678910111213
  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. public List<Notification> Notifications { get; set; } = new();
  11. }
  12. }