19 lines
305 B
C#
19 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TTSW.EF
|
|
{
|
|
public interface IBaseViewModel2<Key>
|
|
{
|
|
|
|
DateTime? Created { get; set; }
|
|
|
|
DateTime? Updated { get; set; }
|
|
|
|
bool isActive { get; set; }
|
|
|
|
}
|
|
}
|