Marked Connection, Endpoint, EndpointAuth, EndpointParam, OutRes, Profile, and RecAction classes as obsolete with [Obsolete("Use Views instead.")]. Added or updated [Table] attributes to specify database tables and schemas for each class. This signals a transition to using Views instead of these entities.
29 lines
614 B
C#
29 lines
614 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ReC.Domain.Entities;
|
|
|
|
[Obsolete("Use Views instead.")]
|
|
[Table("TBREC_OUT_RESULT", Schema = "dbo")]
|
|
public class OutRes
|
|
{
|
|
public long? Id { get; set; }
|
|
|
|
public long? ActionId { get; set; }
|
|
|
|
public RecAction? Action { get; set; }
|
|
|
|
public short? Status { get; set; }
|
|
|
|
public string? Header { get; set; }
|
|
|
|
public string? Body { get; set; }
|
|
|
|
public string? AddedWho { get; set; }
|
|
|
|
public DateTime? AddedWhen { get; set; }
|
|
|
|
public string? ChangedWho { get; set; }
|
|
|
|
public DateTime? ChangedWhen { get; set; }
|
|
}
|