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