20 lines
406 B
C#
20 lines
406 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace RuleEngine.Models
|
|||
|
{
|
|||
|
public partial class User
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public bool? Status { get; set; }
|
|||
|
public int? ScopeId { get; set; }
|
|||
|
|
|||
|
public virtual Scope Scope { get; set; }
|
|||
|
}
|
|||
|
}
|