using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MyCore.Interfaces.DTO
{
///
/// Alarm mode DTO
///
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 DevicesIds { get; set; } // Check if ok
}
}