2021-01-19 23:59:24 +01:00

31 lines
648 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MyCore.Interfaces.DTO
{
public class RoomSummaryDTO
{
public string Id { get; set; }
public string UserId { get; set; }
public string Name { get; set; }
}
public class RoomDetailDTO : RoomSummaryDTO
{
public DateTime CreatedDate { get; set; }
public DateTime UpdatedDate { get; set; }
public List<string> DeviceIds { get; set; }
}
public class RoomCreateOrUpdateDetailDTO : RoomSummaryDTO
{
public List<string> DeviceIds { get; set; }
}
}