123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace GCAS.Model
- {
- public class DeviceModel
- {
- public int Id { get; set; }
- public string Ip { get; set; }
- public string Name { get; set; }
- public int Port { get; set; }
- public string Code { get; set; }
- public int TareWeight { get; set; }
- public DateTime Time { get; set; }
- }
- }
|