Redo entities and configs, plus dummy aspnet identity config

This commit is contained in:
lumijiez
2025-05-26 13:10:38 +03:00
parent 03daae5b50
commit e8c5fbb5cc
33 changed files with 3986 additions and 5 deletions

View 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; }
}