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