mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 07:41:08 +08:00
12 lines
281 B
C#
12 lines
281 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Foxel.Models.DataBase;
|
|
|
|
public abstract class BaseModel
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
|
|
} |