All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Created Dockerfile for packing up API and Web projects as Docker image
10 lines
164 B
C#
10 lines
164 B
C#
using System;
|
|
|
|
namespace YABA.Models.Interfaces
|
|
{
|
|
public interface IDateCreatedTrackable
|
|
{
|
|
public DateTimeOffset CreatedOn { get; set; }
|
|
}
|
|
}
|