mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
30 lines
839 B
C#
30 lines
839 B
C#
using Remotely.Shared.Enums;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Remotely.Shared.Models.RemoteControlDtos
|
|
{
|
|
[DataContract]
|
|
public class ScreenDataDto : BaseDto
|
|
{
|
|
[DataMember(Name = "DisplayNames")]
|
|
public IEnumerable<string> DisplayNames { get; init; }
|
|
|
|
|
|
[DataMember(Name = "DtoType")]
|
|
public override BaseDtoType DtoType { get; init; } = BaseDtoType.ScreenData;
|
|
|
|
[DataMember(Name = "SelectedDisplay")]
|
|
public string SelectedDisplay { get; init; }
|
|
|
|
[DataMember(Name = "MachineName")]
|
|
public string MachineName { get; init; }
|
|
|
|
[DataMember(Name = "ScreenWidth")]
|
|
public int ScreenWidth { get; init; }
|
|
|
|
[DataMember(Name = "ScreenHeight")]
|
|
public int ScreenHeight { get; init; }
|
|
}
|
|
}
|