24 lines
617 B
C#
24 lines
617 B
C#
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
|
|
#nullable enable
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace fgs.database.Models;
|
|
|
|
[Table("ESP32")]
|
|
public partial class Esp32
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string DeviceId { get; set; } = null!;
|
|
|
|
[StringLength(100)]
|
|
public string HostName { get; set; } = null!;
|
|
|
|
public string? FriendlyName { get; set; }
|
|
} |