CarTrackingRuleEngine/RuleEngine/Models/UserUnit.cs

18 lines
314 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 UserUnit
{
public int Id { get; set; }
public int UserId { get; set; }
public int UnitId { get; set; }
public virtual Unit Unit { get; set; }
}
}