Api/Brizco.Domain/Entities/Complex/Complex.cs

8 lines
276 B
C#
Raw Normal View History

2023-09-15 12:37:02 +03:30
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;
}