mirror of
https://github.com/bitwarden/mobile
synced 2026-01-20 09:23:50 +00:00
15 lines
362 B
C#
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; }
|
|
}
|
|
}
|