blob: 5ff44818b46e74c7e45fe1707466a83fcce67882 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 80 00 00 00 80 08 06 00 00 00 c3 3e 61 | .PNG........IHDR..............>a |
| 0020 | cb 00 00 00 04 73 42 49 54 08 08 08 08 7c 08 64 88 00 00 00 09 70 48 59 73 00 00 04 9d 00 00 04 | .....sBIT....|.d.....pHYs....... |
| 0040 | 9dusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Synchronization;
using Tango.PPC.Common.Web;
namespace Tango.PPC.Common.MachineUpdate
{
public class DbCompareResult
{
public bool RequiresUpdate { get; set; }
public UpdateDBResponse UpdateDBResponse { get; set; }
}
}
|