mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
43 lines
866 B
C#
43 lines
866 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
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
public DateTime UpdatedDate { get; set; }
|
|
|
|
public List<string> DeviceIds { get; set; }
|
|
}
|
|
|
|
public class RoomCreateOrUpdateDetailDTO
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public List<string> DeviceIds { get; set; }
|
|
}
|
|
}
|