Sky.Net/Core/Entities/Identity/Address.cs
2022-05-19 13:50:10 -07:00

20 lines
528 B
C#

using System.ComponentModel.DataAnnotations;
namespace Core.Entities.Identity
{
public class Address
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
[Required]
public string AppUserId { get; set; }
public AppUser AppUser { get; set; }
}
}