using System; using API.Entities.Enums.Device; namespace API.DTOs.Device; /// /// A Device is an entity that can receive data from Kavita (kindle) /// public class DeviceDto { /// /// The device Id /// public int Id { get; set; } /// /// A name given to this device /// /// If this device is web, this will be the browser name /// Pixel 3a, John's Kindle public string Name { get; set; } = default!; /// /// An email address associated with the device (ie Kindle). Will be used with Send to functionality /// public string EmailAddress { get; set; } = default!; /// /// Platform (ie) Windows 10 /// public DevicePlatform Platform { get; set; } }