1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-20 09:23:50 +00:00
Files
mobile/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; }
}
}