Initial commit

This commit is contained in:
Carl Tibule
2023-01-25 00:06:14 -06:00
commit e0b38beff6
37 changed files with 1593 additions and 0 deletions

View File

@ -0,0 +1,8 @@

namespace YABA.Models.Interfaces
{
public interface ISoftDeletable
{
public bool IsDeleted { get; set; }
}
}