16 lines
No EOL
395 B
C#
16 lines
No EOL
395 B
C#
using WebsitePanel.WebDavPortal.Models.Common;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Models
|
|
{
|
|
public class OfficeOnlineModel : BaseModel
|
|
{
|
|
public string Url { get; set; }
|
|
public string FileName { get; set; }
|
|
|
|
public OfficeOnlineModel(string url, string fileName)
|
|
{
|
|
Url = url;
|
|
FileName = fileName;
|
|
}
|
|
}
|
|
} |