Class Address
Represents an address entity.
Inherited Members
Namespace: Innovt.Domain.Adresses
Assembly: Innovt.Domain.dll
Syntax
public class Address : ValueObject
Properties
| Edit this page View SourceCity
Gets or sets the city associated with the address.
Declaration
public City City { get; set; }
Property Value
Type | Description |
---|---|
City |
CityId
Gets or sets the ID of the associated city.
Declaration
public int CityId { get; set; }
Property Value
Type | Description |
---|---|
int |
Complement
Gets or sets additional details or complement for the address.
Declaration
public string Complement { get; set; }
Property Value
Type | Description |
---|---|
string |
Coordinate
Gets or sets the coordinates of the address.
Declaration
public Coordinate Coordinate { get; set; }
Property Value
Type | Description |
---|---|
Coordinate |
Description
Gets or sets the description of the address.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
IsDeleted
Gets or sets a value indicating whether the address is marked as deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
bool |
Neighborhood
Gets or sets the neighborhood or area of the address.
Declaration
public string Neighborhood { get; set; }
Property Value
Type | Description |
---|---|
string |
Number
Gets or sets the number associated with the address.
Declaration
public string Number { get; set; }
Property Value
Type | Description |
---|---|
string |
Street
Gets or sets the street of the address.
Declaration
public string Street { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or sets the type of address.
Declaration
public AddressType Type { get; set; }
Property Value
Type | Description |
---|---|
AddressType |
TypeId
Gets or sets the ID of the address type.
Declaration
public int TypeId { get; set; }
Property Value
Type | Description |
---|---|
int |
ZipCode
Gets or sets the ZIP code of the address.
Declaration
public string ZipCode { get; set; }
Property Value
Type | Description |
---|---|
string |