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
}
}