CarTrackingRuleEngine/RuleEngine/Models/CellInfor.cs

20 lines
485 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class CellInfor
{
public int Id { get; set; }
public int? MNC { get; set; }
public int? MCC { get; set; }
public int? CellId { get; set; }
public int? LacId { get; set; }
public double? NetworkLat { get; set; }
public double? NetworkLon { get; set; }
public int? NetworkType { get; set; }
}
}