8 lines
276 B
C#
8 lines
276 B
C#
|
|
namespace Brizco.Domain.Entities.Complex;
|
|||
|
|
|
|||
|
|
public class Complex : ApiEntity
|
|||
|
|
{
|
|||
|
|
public string Name { get; private set; } = string.Empty;
|
|||
|
|
public string Address { get; private set; } = string.Empty;
|
|||
|
|
public string SupportPhone { get; private set; } = string.Empty;
|
|||
|
|
}
|