18 lines
351 B
C#
18 lines
351 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Weee.Models
|
|||
|
{
|
|||
|
public class UserLCADocExcelTemplate
|
|||
|
{
|
|||
|
[Key]
|
|||
|
public int ID { get; set; }
|
|||
|
public string UserID { get; set; }
|
|||
|
|
|||
|
public int TemplateID { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|