42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.ConfiguracionNotificacion")]
|
|
public partial class ConfiguracionNotificacion
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdNotificationType { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdEtapa { get; set; }
|
|
|
|
public string Body { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string Subject { get; set; }
|
|
|
|
public bool SendToTaskUser { get; set; }
|
|
|
|
public bool SendToSupervisorTaskUser { get; set; }
|
|
|
|
public virtual Etapas Etapas { get; set; }
|
|
|
|
public virtual NotificationType NotificationType { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
}
|
|
}
|