18 lines
468 B
C#
18 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class Recipient
|
|
{
|
|
public int Id { get; set; }
|
|
public string StaffCode { get; set; }
|
|
public string Name { get; set; }
|
|
public string Phone { get; set; }
|
|
public string Email { get; set; }
|
|
public string Position { get; set; }
|
|
public int? UnitId { get; set; }
|
|
public bool? IsActive { get; set; }
|
|
}
|
|
}
|