18 lines
314 B
C#
18 lines
314 B
C#
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; }
|
|
}
|
|
}
|