blob: fcc6a4fb704f72fa82b281255769c136e1c1f83f (
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 20 00 00 00 20 08 06 00 00 00 73 7a 7a | .PNG........IHDR.............szz |
| 0020 | f4 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 00 b7 00 00 00 | .....sBIT....|.d.....pHYs....... |
| 0040 | b7 01 46 2e 0d 16 00 00 00 19 74 45 58 74 53 6f using 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; }
}
}
|