Files
yavsc/src/Yavsc.Abstract/Interfaces/IBaseTrackedEntity.cs
Paul Schneider b4870a1814
All checks were successful
Dotnet build and test / log-the-inputs (push) Successful in 6s
Dotnet build and test / build (push) Successful in 1m47s
migration net9.0
2025-06-16 02:30:32 +01:00

13 lines
255 B
C#

using System;
namespace Yavsc
{
public interface ITrackedEntity
{
DateTime DateCreated { get; set; }
string? UserCreated { get; set; }
DateTime DateModified { get; set; }
string? UserModified { get; set; }
}
}