mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
22 lines
574 B
C#
22 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Interfaces.DTO
|
|
{
|
|
/// <summary>
|
|
/// Alarm mode DTO
|
|
/// </summary>
|
|
public class AlarmModeDTO
|
|
{
|
|
public string Id { get; set; }
|
|
public string HomeId { get; set; }
|
|
public string Name { get; set; }
|
|
public bool IsDefault { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public DateTime UpdatedDate { get; set; }
|
|
public List<string> DevicesIds { get; set; } // Check if ok
|
|
}
|
|
}
|