mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
9 lines
197 B
C#
9 lines
197 B
C#
using System;
|
|
|
|
namespace PodNoms.Api.Models {
|
|
public interface IEntity {
|
|
int Id { get; set; }
|
|
DateTime CreateDate { get; set; }
|
|
DateTime UpdateDate { get; set; }
|
|
}
|
|
} |