Allow to add, or edit, company descriptions in admin view.

This commit is contained in:
2020-05-31 19:12:12 +01:00
parent efaf938752
commit d312c82e9c
13 changed files with 296 additions and 638 deletions

View File

@@ -0,0 +1,9 @@
namespace Marechai.ViewModels
{
public class CompanyDescriptionViewModel : BaseViewModel<int>
{
public string Markdown { get; set; }
public string Html { get; set; }
public int CompanyId { get; set; }
}
}