17 lines
377 B
C#
17 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniMarc.마크
|
|
{
|
|
public class MarcPlanItem
|
|
{
|
|
public string Idx { get; set; }
|
|
public string ListName { get; set; }
|
|
public string Date { get; set; }
|
|
public string User { get; set; }
|
|
public string ColCheck { get; set; } = "F";
|
|
}
|
|
}
|