CarTrackingRuleEngine/RuleEngine/Models/TransactionPoint.cs

25 lines
719 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class TransactionPoint
{
public int Id { get; set; }
public string PointCode { get; set; }
public string PointName { get; set; }
public int PointType { get; set; }
public string Address { get; set; }
public double Longitude { get; set; }
public double Latitude { get; set; }
public string Branch { get; set; }
public string Contact { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }
public int? UnitId { get; set; }
public double? Distance { get; set; }
}
}