20 lines
392 B
C#
20 lines
392 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DAL.New_Models;
|
|||
|
|
|
|||
|
|
public partial class TbHostScene
|
|||
|
|
{
|
|||
|
|
public int HostId { get; set; }
|
|||
|
|
|
|||
|
|
public int RoomTypeSceneId { get; set; }
|
|||
|
|
|
|||
|
|
public int? Status { get; set; }
|
|||
|
|
|
|||
|
|
public int? Time { get; set; }
|
|||
|
|
|
|||
|
|
public DateTime? UpdateTime { get; set; }
|
|||
|
|
|
|||
|
|
public virtual TbRoomTypeScene RoomTypeScene { get; set; } = null!;
|
|||
|
|
}
|