Files
PlantPal/SoilMoistureAPI/Models/Device.cs
2025-01-14 17:50:34 -05:00

19 lines
423 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; }
}
}