blob: 1d60a840f774904078bfcced875774a7ce38880b (
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 03 00 00 00 f4 e0 91 | .PNG........IHDR................ |
| 0020 | f9 00 00 00 03 73 42 49 54 08 08 08 db e1 4f e0 00 00 00 09 70 48 59 73 00 00 03 76 00 00 03 76 | .....sBIT.....O.....pHYs...v...v |
| 0040 | 01 7d d5 82 cc 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Synchronization;
namespace Tango.PPC.Common.MachineUpdate
{
public class DbCompareResult
{
public bool RequiresUpdate { get; set; }
public UpdateDBResponse UpdateDBResponse { get; set; }
}
}
|