Files
android/src/App/Models/Api/Response/DeviceResponse.cs
2016-06-21 22:29:29 -04:00

15 lines
362 B
C#

using System;
using PushNotification.Plugin.Abstractions;
namespace Bit.App.Models.Api
{
public class DeviceResponse
{
public string Id { get; set; }
public string Name { get; set; }
public string Identifier { get; set; }
public DeviceType Type { get; set; }
public DateTime CreationDate { get; set; }
}
}