blob: 86eb0b335f32fee067628f8b3e46e36b7a9f046a (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 02 14 00 00 01 52 08 06 00 00 00 aa 93 46 | .PNG........IHDR.......R.......F |
| 0020 | 09 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 41 64 6f 62 65 20 49 6d 61 67 65 52 65 61 | .....tEXtSoftware.Adobe.ImageRea |
| 0040 | 64 79 71 c9 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;
namespace Tango.MachineStudio.DB.ViewModels
{
public class FiberShapesViewVM : DbTableViewModel<FiberShape>
{
public FiberShapesViewVM(INotificationProvider notification) : base(notification)
{
}
}
}
|