20 lines
415 B
C#
20 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Weee.Models
|
|
{
|
|
public class DocExcelTemplate
|
|
{
|
|
[Key]
|
|
public int ID { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public bool IsDocDefaultTemplate { get; set; }
|
|
|
|
public bool IsExcelDefaultTemplate { get; set; }
|
|
}
|
|
} |