17 lines
301 B
C#
17 lines
301 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Fab2ApprovalSystem.Models
|
|
{
|
|
public class ECNTypeChangeLog
|
|
{
|
|
public int ECNNumber;
|
|
public int UserID;
|
|
public string ECNTypeFrom;
|
|
public string ECNTypeTo;
|
|
|
|
|
|
}
|
|
} |