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 DeviceIds { get; set; } } public class RoomCreateOrUpdateDetailDTO : RoomSummaryDTO { public List DeviceIds { get; set; } } }