Redo entities and configs, plus dummy aspnet identity config
This commit is contained in:
14
src/Printbase.Domain/Entities/Users/Address.cs
Normal file
14
src/Printbase.Domain/Entities/Users/Address.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Printbase.Domain.Entities;
|
||||
|
||||
public class Address : EntityBase
|
||||
{
|
||||
public string UserId { get; set; }
|
||||
public string AddressType { get; set; }
|
||||
public string Street { get; set; }
|
||||
public string City { get; set; }
|
||||
public string State { get; set; }
|
||||
public string PostalCode { get; set; }
|
||||
public string Country { get; set; }
|
||||
public bool IsDefault { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user