12 lines
328 B
C#
12 lines
328 B
C#
namespace Cloud.Models
|
|
{
|
|
public class Farm
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int UserId { get; set; }
|
|
public User? User { get; set; }
|
|
public string RaspberryIP { get; set; }
|
|
List<Greenhouse> Greenhouses { get; set; } = new();
|
|
}
|
|
} |