20 lines
479 B
C#
20 lines
479 B
C#
namespace Domains.Common
|
|
{
|
|
/// Model of address
|
|
/// <remarks>Owned</remarks>
|
|
public class Address
|
|
{
|
|
/// Country part of address
|
|
public Country Country { get; set; } = null!;
|
|
|
|
/// City part of address
|
|
public City City { get; set; } = null!;
|
|
|
|
/// Street part of address
|
|
public string Street { get; set; } = null!;
|
|
|
|
/// Building part of address
|
|
public string Building { get; set; } = null!;
|
|
}
|
|
}
|