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