You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
506 B
18 lines
506 B
using System;
|
|
using System.Collections.Generic;
|
|
using hass_workstation_service.Domain.Sensors;
|
|
|
|
namespace hass_workstation_service.Domain
|
|
{
|
|
public abstract class Device
|
|
{
|
|
public Guid Id { get; private set; }
|
|
public string Name { get; private set; }
|
|
public string Manufacturer { get; private set; }
|
|
public string Model { get; private set; }
|
|
public string Version { get; private set; }
|
|
|
|
public ICollection<AbstractSensor> Sensors { get; set; }
|
|
|
|
}
|
|
} |