API updates for functional code

This commit is contained in:
programmingPug
2025-01-04 12:28:05 -05:00
parent a426dce05e
commit dd1196af84
44 changed files with 12280 additions and 5161 deletions

View File

@@ -0,0 +1,14 @@
namespace house_plant_api.Models
{
using System;
public class Device
{
public int Id { get; set; }
public string Name { get; set; }
public string Nickname { get; set; }
public string Uuid { get; set; }
public int? Moisture { get; set; }
public DateTime? LastSeen { get; set; }
}
}