using System; using System.ComponentModel.DataAnnotations; namespace Webshop.Domain.Entities { public class Customer { [Key] public Guid Id { get; set; } [Required] public string AspNetUserId { get; set; } [Required] [MaxLength(100)] public string FirstName { get; set; } [Required] [MaxLength(100)] public string LastName { get; set; } public virtual ApplicationUser User { get; set; } public virtual ICollection
Addresses { get; set; } = new List(); public virtual ICollection