bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet.Shared/Helpers/Logs/DeviceInfo/LogsDeviceInfo.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace NSWallet.Shared.Helpers.Logs.DeviceInfo
{
    public class LogsDeviceInfo
    {
        public string AppVersion { get; set; }
        public string AppBuild { get; set; }
        public string DeviceName { get; set; }
        public string DeviceType { get; set; }
        public bool IsDevice { get; set; }
        public string Manufacturer { get; set; }
        public string Model { get; set; }
        public string Platform { get; set; }
        public string OSVersion { get; set; }
    }
}