Cleanup folder structure again

This commit is contained in:
lumijiez
2025-06-21 20:53:49 +03:00
parent f959770e25
commit ec78744d19
100 changed files with 195 additions and 232 deletions

View File

@@ -0,0 +1,14 @@
namespace Imprink.Domain.Entities;
public class Address : EntityBase
{
public required string UserId { get; set; }
public required string AddressType { get; set; }
public required string Street { get; set; }
public required string City { get; set; }
public required string State { get; set; }
public required string PostalCode { get; set; }
public required string Country { get; set; }
public required bool IsDefault { get; set; }
public required bool IsActive { get; set; }
}