using System.ComponentModel.DataAnnotations; namespace KernelRecordsMVC.Application.ViewModels; public class ProfileViewModel { public long UserId { get; set; } public string Username { get; set; } = null!; [Required] [EmailAddress] public string Email { get; set; } = null!; [Phone] public string? TelephoneNumber { get; set; } public string? ShippingAddress { get; set; } public DateTime DateCreated { get; set; } public long PointsCollected { get; set; } }