Add SQLite code to save the policy html/markdown scripts from the user #94
19 lines
481 B
C#
19 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public class Policy
|
|
{
|
|
public DateTime ChangeDate { get; set; }
|
|
public string ChangeDescription { get; set; }
|
|
public string ChangeAuthor { get; set; }
|
|
public string Version { get; set; }
|
|
public string Markdown { get; set; }
|
|
public string Html { get; set; }
|
|
}
|
|
}
|