mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
13 lines
268 B
C#
13 lines
268 B
C#
using Remotely.Shared.Enums;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Remotely.Shared.Models.RemoteControlDtos
|
|
{
|
|
[DataContract]
|
|
public class BaseDto
|
|
{
|
|
[DataMember(Name = "DtoType")]
|
|
public BaseDtoType DtoType { get; set; }
|
|
}
|
|
}
|