Files
PlantPal/SoilMoistureAPI/Models/Device.cs
programmingPug 0f190a3f26 Major rewrite
2025-01-14 14:47:10 -05:00

19 lines
421 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace SoilMoistureAPI.Models
{
public class Device
{
[Key]
public string DeviceId { get; set; } // Primary Key
[Required]
[MaxLength(100)]
public string Nickname { get; set; }
// Navigation Property
public ICollection<SoilMoisture> SoilMoistures { get; set; }
}
}