19 lines
330 B
C#
19 lines
330 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DataDocking.Entitys
|
|||
|
{
|
|||
|
public class PrimaryKeyTemp
|
|||
|
{
|
|||
|
public int OldId {get;set;}
|
|||
|
|
|||
|
public long NewId { get; set; }
|
|||
|
|
|||
|
public string UserName { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|