I_Entity.cs

15 lines | 267 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Model.Entities.Base
{
    public interface I_Entity
    {
        int ID { set; get; }
        DateTime CreateDate { set; get; }
    }
}