relocated IDeletable and added methods for downloading assemblies from server /bin when running under Wasm

This commit is contained in:
Shaun Walker
2019-09-28 16:51:01 -04:00
parent acc454c5cd
commit 6fa3b124d2
8 changed files with 82 additions and 9 deletions

View File

@ -0,0 +1,11 @@
using System;
namespace Oqtane.Models
{
public interface IDeletable
{
string DeletedBy { get; set; }
DateTime? DeletedOn { get; set; }
bool IsDeleted { get; set; }
}
}