# Entities

实体类放在CleanArchitecture.Domain 

![Entities](../../images/dotnet/CleanArchitecture/Entities/1.png)  

```csharp  
namespace CleanArchitecture.Domain.Entities;

public class Restaurant
{
    public int Id { get; set; }
    public string Name { get; set; } = default!;
    public string Description { get; set; } = default!;
    public string Category { get; set; } = default!;
    public bool HasDelivery { get; set; }

    public string? ContactEmail { get; set; }
    public string? ContactNumber { get; set; }

    public Address? Address { get; set; }
    public List<Dish> Dishes { get; set; } = new();
}
``` 