Files
Web_BLSKafka_Server_Prod/DAL/New_Models/EcoDetail.cs

22 lines
389 B
C#
Raw Normal View History

2025-11-21 08:48:01 +08:00
using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class EcoDetail
{
public int Id { get; set; }
public int? HotelId { get; set; }
public int? HostId { get; set; }
public string? RoomNo { get; set; }
public string? TriggerTime { get; set; }
public int? EcoId { get; set; }
public bool? IsTrigger { get; set; }
}