20 lines
459 B
C#
20 lines
459 B
C#
|
using Newtonsoft.Json;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using Weee.Models.Paramemter;
|
|||
|
|
|||
|
namespace Weee.Models
|
|||
|
{
|
|||
|
public class SheetHeader
|
|||
|
{
|
|||
|
public int LCAID { get; set; }
|
|||
|
[JsonIgnore]
|
|||
|
public Categories Category { get; set; }
|
|||
|
|
|||
|
public string SheetFillerName { get; set; }
|
|||
|
public string Phone { get; set; }
|
|||
|
public string Department { get; set; }
|
|||
|
}
|
|||
|
}
|