Removed nugetSource from pipeline Removed more comments Created Static Classes for most DMO / Controller Classes Push ConfigurationManager.AppSettings to controller Align Tests with other Projects
15 lines
346 B
C#
15 lines
346 B
C#
using System;
|
|
|
|
namespace Fab2ApprovalSystem.Models;
|
|
|
|
public class ApprovalLogHistory {
|
|
|
|
public int ApprovalLogID { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Operation { get; set; }
|
|
public string SubRole { get; set; }
|
|
|
|
public DateTime OperationTime { get; set; }
|
|
public string Comments { get; set; }
|
|
|
|
} |