選択できるのは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. }