21 lines
379 B
C#
21 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Policy;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ExcelComponents.Models
|
|
{
|
|
public class ExcelConfig
|
|
{
|
|
public string FilePath { get; set; }
|
|
public string Title { get; set; }
|
|
public ExcelConfig()
|
|
{
|
|
FilePath = string.Empty;
|
|
Title = string.Empty;
|
|
}
|
|
}
|
|
}
|