18 lines
325 B
C#
18 lines
325 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DAL.New_Models;
|
|||
|
|
|
|||
|
|
public partial class TbCarbonStatus
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public int? HostId { get; set; }
|
|||
|
|
|
|||
|
|
public string? Status { get; set; }
|
|||
|
|
|
|||
|
|
public string? TriggerSource { get; set; }
|
|||
|
|
|
|||
|
|
public DateTime? CreateTime { get; set; }
|
|||
|
|
}
|